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