浏览代码

Renamed CheckOnlyOnceFlag to CheckReadyOnlyOnceFlag

David catuhe 9 年之前
父节点
当前提交
4d3945585e

文件差异内容过多而无法显示
+ 2 - 2
dist/preview release/babylon.core.js


文件差异内容过多而无法显示
+ 1301 - 1301
dist/preview release/babylon.d.ts


文件差异内容过多而无法显示
+ 2 - 2
dist/preview release/babylon.js


文件差异内容过多而无法显示
+ 2 - 2
dist/preview release/babylon.max.js


文件差异内容过多而无法显示
+ 2 - 2
dist/preview release/babylon.noworker.js


+ 1 - 1
src/Materials/babylon.material.js

@@ -152,7 +152,7 @@ var BABYLON;
         };
         Material.prototype.trackCreation = function (onCompiled, onError) {
         };
-        Material.prototype.resetCheckOnlyOnceFlag = function () {
+        Material.prototype.resetCheckReadyOnlyOnceFlag = function () {
             this._wasPreviouslyReady = false;
         };
         Material.prototype._preBind = function () {

+ 1 - 1
src/Materials/babylon.material.ts

@@ -167,7 +167,7 @@
         public trackCreation(onCompiled: (effect: Effect) => void, onError: (effect: Effect, errors: string) => void) {
         }
 
-        public resetCheckOnlyOnceFlag(): void {
+        public resetCheckReadyOnlyOnceFlag(): void {
             this._wasPreviouslyReady = false;
         }