The TransformRotationReset option resets the rotation values for a Transform module. The OptionValue is either True or False. True resets the rotation values. False does not.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Transform”)
object.Option(“TransformRotationReset”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example resets the rotation values for a Transform module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Transform")
CommandApi.Option ("TransformRotationReset", "True")
CommandApi.Do()
Used by: Transform
See Also