瀏覽代碼

Fix incorrect nullEngine _bindTextureDirectly return value

Scott Ramsby 7 年之前
父節點
當前提交
0b96718107
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/Engine/babylon.nullEngine.ts

+ 2 - 1
src/Engine/babylon.nullEngine.ts

@@ -440,9 +440,10 @@
         protected _bindTextureDirectly(target: number, texture: InternalTexture): boolean {
             if (this._boundTexturesCache[this._activeChannel] !== texture) {
                 this._boundTexturesCache[this._activeChannel] = texture;
+                return false;
+            } else {
                 return true;
             }
-            return false;
         }
 
         /** @hidden */