Преглед изворни кода

Engine.createRenderTargetTexture now set the _baseWidth/Height

Loïc Baumann пре 9 година
родитељ
комит
03f098d535
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      src/babylon.engine.ts

+ 3 - 1
src/babylon.engine.ts

@@ -1832,6 +1832,8 @@
             if (generateDepthBuffer) {
                 texture._depthBuffer = depthBuffer;
             }
+            texture._baseWidth = width;
+            texture._baseHeight = height;
             texture._width = width;
             texture._height = height;
             texture.isReady = true;
@@ -2450,4 +2452,4 @@
             }
         }
     }
-}
+}