TargetConstraint

DampedTrackConstraint

A constraint constrains one local axis of the owner to always point towards Target. This constraint uses a pure Swing rotation, i.e. the shortest possible single axis rotation. In other 3D software you can find it with the name “Look at” constraint.

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.

Constructor

DampedTrackConstraint(target : Object3D)

target — constraint's target object.

Properties

See the base TargetConstraint class for common properties.

.fixCameraLightRotation : Boolean

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.

.influence : Float

The percentage of influence the constraint has on the object. Default is 1.0 (100%).

.isDampedTrackConstraint : Boolean

Used to check whether this or derived classes are damped track constraints. Default is true.

.trackAxis : String

The axis to always point towards Target. Can be one of the 'X', 'Y', 'Z', '-X', '-Y', '-Z'. Default is 'X'.

.type : String

The constraint's type. Equals to 'DampedTrackConstraint'.

Methods

See the base TargetConstraint class for common methods.

Source

For more info on how to obtain the source code of this module see this page.