@leafer-game/worker 1.1.1 → 1.2.0
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/worker.js +30 -11
- package/dist/worker.min.js +1 -1
- package/dist/worker.module.js +30 -11
- package/dist/worker.module.min.js +1 -1
- package/package.json +4 -4
package/dist/worker.js
CHANGED
|
@@ -1405,9 +1405,21 @@ var LeaferUI = (function (exports) {
|
|
|
1405
1405
|
};
|
|
1406
1406
|
const R = Run;
|
|
1407
1407
|
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1408
|
+
const Plugin = {
|
|
1409
|
+
list: {},
|
|
1410
|
+
add(name) {
|
|
1411
|
+
this.list[name] = true;
|
|
1412
|
+
},
|
|
1413
|
+
check(name, tip) {
|
|
1414
|
+
const rs = this.list[name];
|
|
1415
|
+
if (!rs && tip)
|
|
1416
|
+
this.need(name);
|
|
1417
|
+
return rs;
|
|
1418
|
+
},
|
|
1419
|
+
need(name) {
|
|
1420
|
+
console.error('need plugin: @leafer-in/' + name);
|
|
1421
|
+
}
|
|
1422
|
+
};
|
|
1411
1423
|
|
|
1412
1424
|
const debug$e = Debug.get('UICreator');
|
|
1413
1425
|
const UICreator = {
|
|
@@ -5632,10 +5644,10 @@ var LeaferUI = (function (exports) {
|
|
|
5632
5644
|
__updatePath() { }
|
|
5633
5645
|
__updateRenderPath() { }
|
|
5634
5646
|
getMotionPathData() {
|
|
5635
|
-
return
|
|
5647
|
+
return Plugin.need('path');
|
|
5636
5648
|
}
|
|
5637
5649
|
getMotionPoint(_motionDistance) {
|
|
5638
|
-
return
|
|
5650
|
+
return Plugin.need('path');
|
|
5639
5651
|
}
|
|
5640
5652
|
getMotionTotal() {
|
|
5641
5653
|
return 0;
|
|
@@ -5992,7 +6004,7 @@ var LeaferUI = (function (exports) {
|
|
|
5992
6004
|
}
|
|
5993
6005
|
}
|
|
5994
6006
|
|
|
5995
|
-
const version = "1.
|
|
6007
|
+
const version = "1.2.0";
|
|
5996
6008
|
|
|
5997
6009
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
5998
6010
|
get allowBackgroundColor() { return true; }
|
|
@@ -6990,8 +7002,8 @@ var LeaferUI = (function (exports) {
|
|
|
6990
7002
|
const Effect = {};
|
|
6991
7003
|
const Export = {};
|
|
6992
7004
|
const State = {
|
|
6993
|
-
setStyleName(_leaf, _styleName, _value) { return
|
|
6994
|
-
set(_leaf, _stateName) { return
|
|
7005
|
+
setStyleName(_leaf, _styleName, _value) { return Plugin.need('state'); },
|
|
7006
|
+
set(_leaf, _stateName) { return Plugin.need('state'); }
|
|
6995
7007
|
};
|
|
6996
7008
|
const Transition = {
|
|
6997
7009
|
list: {},
|
|
@@ -7492,7 +7504,7 @@ var LeaferUI = (function (exports) {
|
|
|
7492
7504
|
drawer.rect(x, y, width, height);
|
|
7493
7505
|
}
|
|
7494
7506
|
animate(_keyframe, _options, _type, _isTemp) {
|
|
7495
|
-
return
|
|
7507
|
+
return Plugin.need('animate');
|
|
7496
7508
|
}
|
|
7497
7509
|
killAnimate(_type) { }
|
|
7498
7510
|
export(filename, options) {
|
|
@@ -8070,7 +8082,7 @@ var LeaferUI = (function (exports) {
|
|
|
8070
8082
|
this.requestRender();
|
|
8071
8083
|
}
|
|
8072
8084
|
zoom(_zoomType, _padding, _fixedScale) {
|
|
8073
|
-
return
|
|
8085
|
+
return Plugin.need('view');
|
|
8074
8086
|
}
|
|
8075
8087
|
getValidMove(moveX, moveY) { return { x: moveX, y: moveY }; }
|
|
8076
8088
|
getValidScale(changeScale) { return changeScale; }
|
|
@@ -11965,6 +11977,8 @@ var LeaferUI = (function (exports) {
|
|
|
11965
11977
|
registerUI()
|
|
11966
11978
|
], exports.Robot);
|
|
11967
11979
|
|
|
11980
|
+
Plugin.add('robot');
|
|
11981
|
+
|
|
11968
11982
|
function stateType(defaultValue, styleName) {
|
|
11969
11983
|
return decorateLeafAttr(defaultValue, (key) => attr({
|
|
11970
11984
|
set(value) {
|
|
@@ -12234,6 +12248,7 @@ var LeaferUI = (function (exports) {
|
|
|
12234
12248
|
return !!find;
|
|
12235
12249
|
}
|
|
12236
12250
|
|
|
12251
|
+
Plugin.add('state');
|
|
12237
12252
|
State.animateExcludes = {
|
|
12238
12253
|
animation: 1,
|
|
12239
12254
|
animationOut: 1,
|
|
@@ -13110,6 +13125,7 @@ var LeaferUI = (function (exports) {
|
|
|
13110
13125
|
return { r: round$1(r * 255), g: round$1(g * 255), b: round$1(b * 255), a };
|
|
13111
13126
|
}
|
|
13112
13127
|
|
|
13128
|
+
Plugin.add('color');
|
|
13113
13129
|
ColorConvert.object = colorToRGBA;
|
|
13114
13130
|
|
|
13115
13131
|
const { round } = Math;
|
|
@@ -13171,6 +13187,8 @@ var LeaferUI = (function (exports) {
|
|
|
13171
13187
|
};
|
|
13172
13188
|
}
|
|
13173
13189
|
|
|
13190
|
+
Plugin.add('animate');
|
|
13191
|
+
setTimeout(() => Plugin.check('color', true));
|
|
13174
13192
|
State.canAnimate = true;
|
|
13175
13193
|
Object.assign(Transition, TransitionModule);
|
|
13176
13194
|
Object.assign(Transition.list, TransitionList);
|
|
@@ -13443,6 +13461,7 @@ var LeaferUI = (function (exports) {
|
|
|
13443
13461
|
}));
|
|
13444
13462
|
}
|
|
13445
13463
|
|
|
13464
|
+
Plugin.add('motion-path');
|
|
13446
13465
|
Transition.register('motion', function (from, to, t, target) {
|
|
13447
13466
|
if (!from)
|
|
13448
13467
|
from = 0;
|
|
@@ -13630,6 +13649,7 @@ var LeaferUI = (function (exports) {
|
|
|
13630
13649
|
exports.PathNumberCommandMap = PathNumberCommandMap;
|
|
13631
13650
|
exports.PenData = PenData;
|
|
13632
13651
|
exports.Platform = Platform;
|
|
13652
|
+
exports.Plugin = Plugin;
|
|
13633
13653
|
exports.Point = Point;
|
|
13634
13654
|
exports.PointHelper = PointHelper;
|
|
13635
13655
|
exports.PointerButton = PointerButton;
|
|
@@ -13691,7 +13711,6 @@ var LeaferUI = (function (exports) {
|
|
|
13691
13711
|
exports.maskType = maskType;
|
|
13692
13712
|
exports.motionPathType = motionPathType;
|
|
13693
13713
|
exports.naturalBoundsType = naturalBoundsType;
|
|
13694
|
-
exports.needPlugin = needPlugin;
|
|
13695
13714
|
exports.opacityType = opacityType;
|
|
13696
13715
|
exports.pathInputType = pathInputType;
|
|
13697
13716
|
exports.pathType = pathType;
|