浏览代码

Examples: Clean up. (#23001)

Michael Herzog 3 年之前
父节点
当前提交
fde01b87be
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;