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