Type Alias HelperEventMap
HelperEventMap: { move: ((position: THREE.Vector3) => void); moveBefore: ((position: THREE.Vector3) => THREE.Vector3 | null | undefined); moveByMouseDisable: (() => void); moveByMouseEnable: (() => void); moveEnd: (() => void); moveStart: ((direction?: Direction) => void); rotate: ((quaternion: THREE.Quaternion) => void); rotateEnd: (() => void); rotateStart: ((direction?: Direction) => void); scale: ((scale: THREE.Vector3) => void); scaleEnd: (() => void); scaleStart: ((direction?: Direction | Direction4) => void); updateOtherHelpers: ((params: { camera: THREE.Camera; }) => void); wantToMove: ((position: THREE.Vector3) => void); wantToRotate: ((quaternion: THREE.Quaternion) => void); wantToScale: ((scale: THREE.Vector3) => void); }