@galacean/engine-core 0.0.0-experimental-double11.12 → 0.0.0-experimental-double11.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +1 -4
- package/dist/main.js.map +1 -1
- package/dist/miniprogram.js +1 -4
- package/dist/module.js +1 -4
- package/dist/module.js.map +1 -1
- package/package.json +3 -3
package/dist/miniprogram.js
CHANGED
|
@@ -13134,7 +13134,7 @@ var /** @internal */ PromiseState;
|
|
|
13134
13134
|
var objects = Utils.objectValues(this._referResourcePool);
|
|
13135
13135
|
for(var i = 0, len = objects.length; i < len; i++){
|
|
13136
13136
|
if (!objects[i].isGCIgnored || forceDestroy) {
|
|
13137
|
-
objects[i].destroy();
|
|
13137
|
+
objects[i].destroy(forceDestroy);
|
|
13138
13138
|
}
|
|
13139
13139
|
}
|
|
13140
13140
|
};
|
|
@@ -16838,9 +16838,6 @@ ShaderPool.init();
|
|
|
16838
16838
|
_proto._destroy = function _destroy() {
|
|
16839
16839
|
this._sceneManager._destroyAllScene();
|
|
16840
16840
|
this._resourceManager._destroy();
|
|
16841
|
-
this._whiteTexture2D.destroy(true);
|
|
16842
|
-
this._magentaTexture2D.destroy(true);
|
|
16843
|
-
this._magentaTextureCube.destroy(true);
|
|
16844
16841
|
this._textDefaultFont = null;
|
|
16845
16842
|
this._fontMap = null;
|
|
16846
16843
|
this.inputManager._destroy();
|
package/dist/module.js
CHANGED
|
@@ -13129,7 +13129,7 @@ var /** @internal */ PromiseState;
|
|
|
13129
13129
|
var objects = Utils.objectValues(this._referResourcePool);
|
|
13130
13130
|
for(var i = 0, len = objects.length; i < len; i++){
|
|
13131
13131
|
if (!objects[i].isGCIgnored || forceDestroy) {
|
|
13132
|
-
objects[i].destroy();
|
|
13132
|
+
objects[i].destroy(forceDestroy);
|
|
13133
13133
|
}
|
|
13134
13134
|
}
|
|
13135
13135
|
};
|
|
@@ -16833,9 +16833,6 @@ ShaderPool.init();
|
|
|
16833
16833
|
_proto._destroy = function _destroy() {
|
|
16834
16834
|
this._sceneManager._destroyAllScene();
|
|
16835
16835
|
this._resourceManager._destroy();
|
|
16836
|
-
this._whiteTexture2D.destroy(true);
|
|
16837
|
-
this._magentaTexture2D.destroy(true);
|
|
16838
|
-
this._magentaTextureCube.destroy(true);
|
|
16839
16836
|
this._textDefaultFont = null;
|
|
16840
16837
|
this._fontMap = null;
|
|
16841
16838
|
this.inputManager._destroy();
|