@galacean/effects-core 2.1.3-alpha.0 → 2.1.3-alpha.2
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/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Description: Galacean Effects runtime core for the web
|
|
4
4
|
* Author: Ant Group CO., Ltd.
|
|
5
5
|
* Contributors: 燃然,飂兮,十弦,云垣,茂安,意绮
|
|
6
|
-
* Version: v2.1.3-alpha.
|
|
6
|
+
* Version: v2.1.3-alpha.2
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
'use strict';
|
|
@@ -955,9 +955,13 @@ var PluginSystem = /*#__PURE__*/ function() {
|
|
|
955
955
|
}();
|
|
956
956
|
var pluginInfoMap = {
|
|
957
957
|
"alipay-downgrade": "@galacean/effects-plugin-alipay-downgrade",
|
|
958
|
+
"downgrade": "@galacean/effects-plugin-downgrade",
|
|
958
959
|
"editor-gizmo": "@galacean/effects-plugin-editor-gizmo",
|
|
959
960
|
"model": "@galacean/effects-plugin-model",
|
|
961
|
+
"video": "@galacean/effects-plugin-multimedia",
|
|
962
|
+
"audio": "@galacean/effects-plugin-multimedia",
|
|
960
963
|
"orientation-transformer": "@galacean/effects-plugin-orientation-transformer",
|
|
964
|
+
"richtext": "@galacean/effects-plugin-rich-text",
|
|
961
965
|
"spine": "@galacean/effects-plugin-spine"
|
|
962
966
|
};
|
|
963
967
|
function getPluginUsageInfo(name) {
|
|
@@ -21155,9 +21159,10 @@ exports.ParticleSystem = /*#__PURE__*/ function(Component) {
|
|
|
21155
21159
|
};
|
|
21156
21160
|
this.textureSheetAnimation = textureSheetAnimation;
|
|
21157
21161
|
var renderer = props.renderer || {};
|
|
21158
|
-
var rotationOverLifetime
|
|
21162
|
+
var rotationOverLifetime;
|
|
21159
21163
|
var rotOverLt = props.rotationOverLifetime;
|
|
21160
21164
|
if (rotOverLt) {
|
|
21165
|
+
rotationOverLifetime = {};
|
|
21161
21166
|
rotationOverLifetime.asRotation = !!rotOverLt.asRotation;
|
|
21162
21167
|
rotationOverLifetime.z = rotOverLt.z ? createValueGetter(rotOverLt.z) : createValueGetter(0);
|
|
21163
21168
|
if (rotOverLt.separateAxes) {
|
|
@@ -31374,7 +31379,7 @@ registerPlugin("sprite", SpriteLoader, exports.VFXItem, true);
|
|
|
31374
31379
|
registerPlugin("particle", ParticleLoader, exports.VFXItem, true);
|
|
31375
31380
|
registerPlugin("cal", CalculateLoader, exports.VFXItem, true);
|
|
31376
31381
|
registerPlugin("interact", InteractLoader, exports.VFXItem, true);
|
|
31377
|
-
var version = "2.1.3-alpha.
|
|
31382
|
+
var version = "2.1.3-alpha.2";
|
|
31378
31383
|
logger.info("Core version: " + version + ".");
|
|
31379
31384
|
|
|
31380
31385
|
exports.AbstractPlugin = AbstractPlugin;
|