소스 검색

Fix error in engine.rawTextureGL2

Alex Gordon 5 년 전
부모
커밋
b3008ddcff
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      src/Engines/Extensions/engine.rawTextureGL2.ts

+ 5 - 1
src/Engines/Extensions/engine.rawTextureGL2.ts

@@ -94,7 +94,11 @@ function _createRawTextureFunction(is3D: boolean) {
         texture.type = textureType;
         texture.generateMipMaps = generateMipMaps;
         texture.samplingMode = samplingMode;
-        texture.is3D = true;
+        if (is3D) {
+            texture.is3D = true;
+        } else {
+            texture.is2DArray = true;
+        }
 
         if (!this._doNotHandleContextLost) {
             texture._bufferView = data;