|
@@ -10471,7 +10471,7 @@ var BABYLON;
|
|
Engine.prototype.resetTextureCache = function () {
|
|
Engine.prototype.resetTextureCache = function () {
|
|
for (var key in this._boundTexturesCache) {
|
|
for (var key in this._boundTexturesCache) {
|
|
var boundTexture = this._boundTexturesCache[key];
|
|
var boundTexture = this._boundTexturesCache[key];
|
|
- if (boundTexture) {
|
|
|
|
|
|
+ if (!this.disableTextureBindingOptimization && boundTexture) {
|
|
this._removeDesignatedSlot(boundTexture);
|
|
this._removeDesignatedSlot(boundTexture);
|
|
}
|
|
}
|
|
this._boundTexturesCache[key] = null;
|
|
this._boundTexturesCache[key] = null;
|
|
@@ -30767,7 +30767,7 @@ var BABYLON;
|
|
return null;
|
|
return null;
|
|
}
|
|
}
|
|
if (!other) {
|
|
if (!other) {
|
|
- var padding = new Float32Array(length);
|
|
|
|
|
|
+ var padding = new Float32Array(source.length);
|
|
padding.fill(defaultValue);
|
|
padding.fill(defaultValue);
|
|
return this._mergeElement(source, padding, length);
|
|
return this._mergeElement(source, padding, length);
|
|
}
|
|
}
|
|
@@ -49688,7 +49688,7 @@ var BABYLON;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-//# sourceMappingURL=babylon.iParticleEmitterType.js.map
|
|
|
|
|
|
+//# sourceMappingURL=babylon.IParticleEmitterType.js.map
|
|
|
|
|
|
var BABYLON;
|
|
var BABYLON;
|
|
(function (BABYLON) {
|
|
(function (BABYLON) {
|