浏览代码

Fix missing Texture3D import in WebGLUniforms

Takahiro 7 年之前
父节点
当前提交
a4fbd9f7bd
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/renderers/webgl/WebGLUniforms.js

+ 1 - 0
src/renderers/webgl/WebGLUniforms.js

@@ -51,6 +51,7 @@
 
 
 import { CubeTexture } from '../../textures/CubeTexture.js';
 import { CubeTexture } from '../../textures/CubeTexture.js';
 import { Texture } from '../../textures/Texture.js';
 import { Texture } from '../../textures/Texture.js';
+import { Texture3D } from '../../textures/Texture3D.js';
 
 
 var emptyTexture = new Texture();
 var emptyTexture = new Texture();
 var emptyTexture3d = new Texture3D();
 var emptyTexture3d = new Texture3D();