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