Type alias NewRotationEventData

NewRotationEventData: {
    newRotation: THREE.Euler;
    object: THREE.Object3D;
    oldRotation: THREE.Euler;
}

Data for the new-rotation event.

Type declaration

  • newRotation: THREE.Euler

    A new vector object that holds the new rotation. N.B: Old and new rotation can be the same!

  • object: THREE.Object3D

    Reference to the object that was moved.

  • oldRotation: THREE.Euler

    A new vector object that holds the old rotation.

Generated using TypeDoc