@threejs-addons/threejs-addons
Version:
free & opensource threejs addons to boost productivity
12 lines (11 loc) • 589 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ControlType = void 0;
var ControlType;
(function (ControlType) {
ControlType[ControlType["OBJECT_3D"] = 0] = "OBJECT_3D";
ControlType[ControlType["RAPIER_COLLIDER"] = 1] = "RAPIER_COLLIDER";
ControlType[ControlType["RAPIER_RIGID_BODY"] = 2] = "RAPIER_RIGID_BODY";
ControlType[ControlType["POINTER_LOCK_CONTROLS"] = 3] = "POINTER_LOCK_CONTROLS";
ControlType[ControlType["ORBIT_CONTROLS"] = 4] = "ORBIT_CONTROLS";
})(ControlType || (exports.ControlType = ControlType = {}));