A constraint that transfers a rotation around one axis of a source.

interface RollConstraint {
    extensions?: { [name: string]: any };
    extras?: any;
    rollAxis: "X" | "Y" | "Z";
    source: number;
    weight?: number;
}

Properties

extensions?: { [name: string]: any }
extras?: any
rollAxis: "X" | "Y" | "Z"

The roll axis of the constraint.

source: number

The index of the node constrains the node.

weight?: number

The weight of the constraint.