Explorar el Código

Fixing videoTexture bug

Deltakosh hace 12 años
padre
commit
9b60c7cc35
Se han modificado 2 ficheros con 4 adiciones y 2 borrados
  1. 3 1
      Babylon/Materials/textures/babylon.videoTexture.js
  2. 1 1
      babylon.1.4.0.js

+ 3 - 1
Babylon/Materials/textures/babylon.videoTexture.js

@@ -22,7 +22,9 @@
 
 
         var that = this;
         var that = this;
         this.video.addEventListener("canplaythrough", function () {
         this.video.addEventListener("canplaythrough", function () {
-            that._texture.isReady = true;
+            if (that._texture) {
+                that._texture.isReady = true;
+            }
         });
         });
 
 
         urls.forEach(function (url) {
         urls.forEach(function (url) {

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 1 - 1
babylon.1.4.0.js