|
@@ -53839,6 +53839,35 @@ class ShapePath {
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+class Controls extends EventDispatcher {
|
|
|
|
|
+
|
|
|
|
|
+ constructor( object, domElement ) {
|
|
|
|
|
+
|
|
|
|
|
+ super();
|
|
|
|
|
+
|
|
|
|
|
+ this.object = object;
|
|
|
|
|
+ this.domElement = domElement;
|
|
|
|
|
+
|
|
|
|
|
+ this.enabled = true;
|
|
|
|
|
+
|
|
|
|
|
+ this.state = - 1;
|
|
|
|
|
+
|
|
|
|
|
+ this.keys = {};
|
|
|
|
|
+ this.mouseButtons = { LEFT: null, MIDDLE: null, RIGHT: null };
|
|
|
|
|
+ this.touches = { ONE: null, TWO: null };
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ connect() {}
|
|
|
|
|
+
|
|
|
|
|
+ disconnect() {}
|
|
|
|
|
+
|
|
|
|
|
+ dispose() {}
|
|
|
|
|
+
|
|
|
|
|
+ update( /* delta */ ) {}
|
|
|
|
|
+
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
class WebGLMultipleRenderTargets extends WebGLRenderTarget { // @deprecated, r162
|
|
class WebGLMultipleRenderTargets extends WebGLRenderTarget { // @deprecated, r162
|
|
|
|
|
|
|
|
constructor( width = 1, height = 1, count = 1, options = {} ) {
|
|
constructor( width = 1, height = 1, count = 1, options = {} ) {
|
|
@@ -53943,6 +53972,7 @@ exports.CompressedTextureLoader = CompressedTextureLoader;
|
|
|
exports.ConeGeometry = ConeGeometry;
|
|
exports.ConeGeometry = ConeGeometry;
|
|
|
exports.ConstantAlphaFactor = ConstantAlphaFactor;
|
|
exports.ConstantAlphaFactor = ConstantAlphaFactor;
|
|
|
exports.ConstantColorFactor = ConstantColorFactor;
|
|
exports.ConstantColorFactor = ConstantColorFactor;
|
|
|
|
|
+exports.Controls = Controls;
|
|
|
exports.CubeCamera = CubeCamera;
|
|
exports.CubeCamera = CubeCamera;
|
|
|
exports.CubeReflectionMapping = CubeReflectionMapping;
|
|
exports.CubeReflectionMapping = CubeReflectionMapping;
|
|
|
exports.CubeRefractionMapping = CubeRefractionMapping;
|
|
exports.CubeRefractionMapping = CubeRefractionMapping;
|