Explorar el Código

Examples: Clean up. (#23001)

Michael Herzog hace 3 años
padre
commit
fde01b87be
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/webgpu_sandbox.html

+ 1 - 1
examples/webgpu_sandbox.html

@@ -227,7 +227,7 @@
 
 				}
 
-				const texture = THREE.DataTexture( data, width, height, THREE.RGBAFormat );
+				const texture = new THREE.DataTexture( data, width, height, THREE.RGBAFormat );
 				texture.needsUpdate = true;
 				return texture;