|
@@ -12092,7 +12092,7 @@ var BABYLON;
|
|
|
* Returns the current version of the framework
|
|
|
*/
|
|
|
get: function () {
|
|
|
- return "3.3.0-alpha.7";
|
|
|
+ return "3.3.0-alpha.8";
|
|
|
},
|
|
|
enumerable: true,
|
|
|
configurable: true
|
|
@@ -50845,8 +50845,9 @@ var BABYLON;
|
|
|
if (!this._isStarted) {
|
|
|
return this;
|
|
|
}
|
|
|
- while (this._animatables.length > 0) {
|
|
|
- this._animatables[0].stop();
|
|
|
+ var list = this._animatables.slice();
|
|
|
+ for (var index = 0; index < list.length; index++) {
|
|
|
+ list[index].stop();
|
|
|
}
|
|
|
this._isStarted = false;
|
|
|
return this;
|