@galacean/engine-core 1.1.0-beta.43 → 1.1.0-beta.45
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 +2 -2
- package/dist/main.js.map +1 -1
- package/dist/miniprogram.js +2 -2
- package/dist/module.js +2 -2
- package/dist/module.js.map +1 -1
- package/package.json +3 -3
- package/types/Canvas.d.ts +2 -1
package/dist/main.js
CHANGED
|
@@ -19633,8 +19633,8 @@ ShaderPool.init();
|
|
|
19633
19633
|
set: function set(value) {
|
|
19634
19634
|
if (this._width !== value) {
|
|
19635
19635
|
this._width = value;
|
|
19636
|
+
this._onWidthChanged(value);
|
|
19636
19637
|
this._sizeUpdateFlagManager.dispatch();
|
|
19637
|
-
this._onSizeChanged(value, this._width);
|
|
19638
19638
|
}
|
|
19639
19639
|
}
|
|
19640
19640
|
},
|
|
@@ -19648,8 +19648,8 @@ ShaderPool.init();
|
|
|
19648
19648
|
set: function set(value) {
|
|
19649
19649
|
if (this._height !== value) {
|
|
19650
19650
|
this._height = value;
|
|
19651
|
+
this._onHeightChange(value);
|
|
19651
19652
|
this._sizeUpdateFlagManager.dispatch();
|
|
19652
|
-
this._onSizeChanged(this._width, value);
|
|
19653
19653
|
}
|
|
19654
19654
|
}
|
|
19655
19655
|
}
|