Unless otherwise noted, the following transform properties are always interpreted with respect to the current working coordinate system as defined by the currently active coordsys context. The default coordsys is world . The pos , rotation , and scale properties of a node are aliases to the corresponding subcontroller for the node's transform controller. If the transform controller does not have one of these subcontrollers, accessing the corresponding node property will result in an "Unknown property" error message. For example, the LookAt controller does not have a Rotation subcontroller, and the IK controller does not have any subcontrollers. You can still access the transform values using the Matrix3 properties of the node's transform property, for example, objpos=obj.transform.translationpart .
If written to, the Matrix3 value is decomposed into its position, rotation, and scale values. These values are stored in the respective position, rotation, and scale controllers, if those controllers exist and can be written to.
<node>.pos: Point3 --can use .position synonym throughout <node>.pos.controller: Controller --can use .track synonym throughout <node>.pos.isAnimated: Boolean, read-only --true if position is animated <node>.pos.keys: MAXKeyArray <node>.pos.track: Controller --synonym of .pos.controller
<node>.rotation: Quat <node>.rotation.x_rotation: Float --X rotation of node <node>.rotation.y_rotation: Float --Y rotation of node <node>.rotation.z_rotation: Float --Z rotation of node <node>.rotation.controller: Controller --can use .track synonym throughout <node>.rotation.isAnimated: Boolean, read-only --true if rotation is animated <node>.rotation.keys: MAXKeyArray <node>.rotation.track: Controller --synonym of .rotation.controller
<node>.scale: Point3 -- fraction <node>.scale.controller: Controller --can use .track synonym throughout <node>.scale.isAnimated: Boolean, read-only --true if scale is animated <node>.scale.keys: MAXKeyArray <node>.scale.track: Controller --synonym of .scale.controller
Rotates node so that the node's Z axis points in the specified direction. The node is rotated around its Z axis such that the Y axis points as much as possible in the world -Z direction.
Getting and setting <node>.dir now respects the current coordinate system. Previously, this property was always in world coordinates.
<node>.max: Point3, read-only --max coordinates of node's bounding box <node>.min: Point3, read-only --min coordinates of node's bounding box <node>.center: Point3 --coordinates of center of node's bounding box
Node geometry's position, rotation, and scale offset from the pivot in world coordinates.
Node geometry's offset in world coordinates.