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