Procházet zdrojové kódy

Fix incorrect nullEngine _bindTextureDirectly return value

Scott Ramsby před 7 roky
rodič
revize
0b96718107
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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 */