Browse Source

Merge pull request #14840 from takahirox/Fix3DTextureImport

Fix missing Texture3D import in WebGLUniforms
Mr.doob 7 năm trước cách đây
mục cha
commit
9f7cc2d425
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  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 { Texture } from '../../textures/Texture.js';
+import { Texture3D } from '../../textures/Texture3D.js';
 
 var emptyTexture = new Texture();
 var emptyTexture3d = new Texture3D();