Bladeren bron

Renamed CheckOnlyOnceFlag to CheckReadyOnlyOnceFlag

David catuhe 9 jaren geleden
bovenliggende
commit
4d3945585e

File diff suppressed because it is too large
+ 2 - 2
dist/preview release/babylon.core.js


File diff suppressed because it is too large
+ 1301 - 1301
dist/preview release/babylon.d.ts


File diff suppressed because it is too large
+ 2 - 2
dist/preview release/babylon.js


File diff suppressed because it is too large
+ 2 - 2
dist/preview release/babylon.max.js


File diff suppressed because it is too large
+ 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;
         }