The LatticeResampleYMax option changes the Y axis maximum value for a Resample module. The OptionValue is a number, representing the maximum Y value.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Resample”)
object.Option(“LatticeResampleYMax”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example sets the Y Axis maximum value for the Resample module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Resample")
CommandApi.Option ("LatticeResampleYMax", "0.6")
Used by: LatticeResample
See Also