@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/miniprogram.js
CHANGED
|
@@ -19634,8 +19634,8 @@ ShaderPool.init();
|
|
|
19634
19634
|
set: function set(value) {
|
|
19635
19635
|
if (this._width !== value) {
|
|
19636
19636
|
this._width = value;
|
|
19637
|
+
this._onWidthChanged(value);
|
|
19637
19638
|
this._sizeUpdateFlagManager.dispatch();
|
|
19638
|
-
this._onSizeChanged(value, this._width);
|
|
19639
19639
|
}
|
|
19640
19640
|
}
|
|
19641
19641
|
},
|
|
@@ -19649,8 +19649,8 @@ ShaderPool.init();
|
|
|
19649
19649
|
set: function set(value) {
|
|
19650
19650
|
if (this._height !== value) {
|
|
19651
19651
|
this._height = value;
|
|
19652
|
+
this._onHeightChange(value);
|
|
19652
19653
|
this._sizeUpdateFlagManager.dispatch();
|
|
19653
|
-
this._onSizeChanged(this._width, value);
|
|
19654
19654
|
}
|
|
19655
19655
|
}
|
|
19656
19656
|
}
|
package/dist/module.js
CHANGED
|
@@ -19629,8 +19629,8 @@ ShaderPool.init();
|
|
|
19629
19629
|
set: function set(value) {
|
|
19630
19630
|
if (this._width !== value) {
|
|
19631
19631
|
this._width = value;
|
|
19632
|
+
this._onWidthChanged(value);
|
|
19632
19633
|
this._sizeUpdateFlagManager.dispatch();
|
|
19633
|
-
this._onSizeChanged(value, this._width);
|
|
19634
19634
|
}
|
|
19635
19635
|
}
|
|
19636
19636
|
},
|
|
@@ -19644,8 +19644,8 @@ ShaderPool.init();
|
|
|
19644
19644
|
set: function set(value) {
|
|
19645
19645
|
if (this._height !== value) {
|
|
19646
19646
|
this._height = value;
|
|
19647
|
+
this._onHeightChange(value);
|
|
19647
19648
|
this._sizeUpdateFlagManager.dispatch();
|
|
19648
|
-
this._onSizeChanged(this._width, value);
|
|
19649
19649
|
}
|
|
19650
19650
|
}
|
|
19651
19651
|
}
|