A constraint forces the object, to which it is applied, to have the same transforms as its target.
Constraints are used to set up various relations between objects by affecting their position, rotation and scale. Can be used with the Object3D.constraints property.
target — constraint's target object.
See the base TargetConstraint class for common properties.
In Verge3D we use right-handed coordinate system with the Y axis pointing in the up direction, but Blender and 3ds Max uses right-handed coordinate system with Z axis pointing in the up direction (Verge3D Wiki). So, to correct the rotation for cameras and lights, set fixCameraLightRotation = true
. Default is false
.
The percentage of influence the constraint has on the object. Default is 1.0
(100%).
Used to check whether this or derived classes are copy transforms constraints. Default is true
.
Specifies how the new transforms is combined with the existing transforms. Default is 'REPLACE'
.
'AFTER'
'BEFORE'
'REPLACE'
The constraint's type. Equals to 'CopyTransformsConstraint'.
See the base TargetConstraint class for common methods.
You can use the copy transform puzzle to apply CopyTransformsConstraint in a visual manner.
For more info on how to obtain the source code of this module see this page.