Represents a transform of a single bone of [[VRMPose]]. Both position and rotation are optional.

interface VRMPoseTransform {
    position?: [number, number, number];
    rotation?: [number, number, number, number];
}

Properties

Properties

position?: [number, number, number]

Position of the transform.

rotation?: [number, number, number, number]

Rotation of the transform. Note that it's a quaternion.