Mugen87 пре 1 година
родитељ
комит
4b89578d02
5 измењених фајлова са 147 додато и 26 уклоњено
  1. 30 0
      build/three.cjs
  2. 29 0
      build/three.module.js
  3. 0 0
      build/three.module.min.js
  4. 88 26
      build/three.webgpu.js
  5. 0 0
      build/three.webgpu.min.js

+ 30 - 0
build/three.cjs

@@ -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
 
 	constructor( width = 1, height = 1, count = 1, options = {} ) {
@@ -53943,6 +53972,7 @@ exports.CompressedTextureLoader = CompressedTextureLoader;
 exports.ConeGeometry = ConeGeometry;
 exports.ConstantAlphaFactor = ConstantAlphaFactor;
 exports.ConstantColorFactor = ConstantColorFactor;
+exports.Controls = Controls;
 exports.CubeCamera = CubeCamera;
 exports.CubeReflectionMapping = CubeReflectionMapping;
 exports.CubeRefractionMapping = CubeRefractionMapping;

Разлика између датотеке није приказан због своје велике величине
+ 29 - 0
build/three.module.js


Разлика између датотеке није приказан због своје велике величине
+ 0 - 0
build/three.module.min.js


Разлика између датотеке није приказан због своје велике величине
+ 88 - 26
build/three.webgpu.js


Разлика између датотеке није приказан због своје велике величине
+ 0 - 0
build/three.webgpu.min.js


Неке датотеке нису приказане због велике количине промена

粤ICP备19079148号