Type alias MultiSelectEventMap

MultiSelectEventMap: {
    deselect: {
        object: THREE.Object3D;
        type: "deselect";
    };
    new-position: {
        newPositions: NewPositionEventData[];
        object: null;
        type: "new-position";
    };
    new-rotation: {
        newRotations: NewRotationEventData[];
        object: null;
        type: "new-rotation";
    };
    new-scale: {
        newScales: NewScaleEventData[];
        object: null;
        type: "new-scale";
    };
    select: {
        object: THREE.Object3D;
        type: "select";
    };
}

Type declaration

  • deselect: {
        object: THREE.Object3D;
        type: "deselect";
    }
    • object: THREE.Object3D
    • type: "deselect"
  • new-position: {
        newPositions: NewPositionEventData[];
        object: null;
        type: "new-position";
    }
  • new-rotation: {
        newRotations: NewRotationEventData[];
        object: null;
        type: "new-rotation";
    }
  • new-scale: {
        newScales: NewScaleEventData[];
        object: null;
        type: "new-scale";
    }
  • select: {
        object: THREE.Object3D;
        type: "select";
    }
    • object: THREE.Object3D
    • type: "select"

Generated using TypeDoc