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