The TransformYTrans option changes the Y translation value for a Transform module. The OptionValue is a number, indicating the amount of translation to perform in the Y direction.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Transform”)
object.Option(“TransformYTrans”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the Y translation value for a Transformmodule.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Transform")
CommandApi.Option ("TransformYTrans", "1")
CommandApi.Do()
Used by: Transform
See Also