瀏覽代碼

bugs fixing

David Catuhe 8 年之前
父節點
當前提交
2ed3ff72c3

文件差異過大導致無法顯示
+ 26 - 25
dist/preview release/babylon.core.js


文件差異過大導致無法顯示
+ 1858 - 1746
dist/preview release/babylon.d.ts


文件差異過大導致無法顯示
+ 33 - 33
dist/preview release/babylon.js


文件差異過大導致無法顯示
+ 576 - 79
dist/preview release/babylon.max.js


文件差異過大導致無法顯示
+ 33 - 33
dist/preview release/babylon.noworker.js


+ 2 - 0
src/Lights/Shadows/babylon.shadowGenerator.ts

@@ -436,6 +436,8 @@
             if (this._boxBlurPostprocess) {
                 this._boxBlurPostprocess.dispose();
             }
+
+            this._light._shadowGenerator = null;
         }
 
         public serialize(): any {

+ 1 - 1
src/Mesh/babylon.mesh.vertexData.ts

@@ -1199,7 +1199,7 @@
 
                     positions.push(position.x, position.y, position.z);
                     normals.push(normal.x, normal.y, normal.z);
-                    uvs.push(col / subdivisionsX, 1.0 - row / subdivisionsX);
+                    uvs.push(col / subdivisionsX, 1.0 - row / subdivisionsY);
                 }
             }