@almadar/std 16.178.0 → 16.179.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/behaviors/lolo/ui/core/molecules/ui-fx-overlay.lolo +63 -0
- package/behaviors/lolo/ui/core/molecules/ui-page-header.lolo +1 -1
- package/behaviors/lolo/ui/core/organisms/ui-form-section.lolo +2 -2
- package/behaviors/lolo/ui/core/organisms/ui-form.lolo +2 -2
- package/behaviors/lolo/ui/core/templates/ui-dashboard-layout.lolo +2 -2
- package/behaviors/lolo/ui/game/atoms/std-fx-particles.lolo +23 -4
- package/behaviors/lolo/ui/game/atoms/std-platformer-body.lolo +251 -0
- package/behaviors/lolo/ui/game/atoms/ui-draw-fx-layer.lolo +109 -0
- package/behaviors/lolo/ui/game/organisms/std-arcade-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-crew-board-2d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-dungeon-board-2d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-market-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-objective-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-platformer-board-2d.lolo +391 -0
- package/behaviors/lolo/ui/game/organisms/std-survival-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-tactics-board-2d.lolo +34 -6
- package/behaviors/lolo/ui/game/organisms/std-tactics-board-3d.lolo +34 -4
- package/behaviors/lolo/ui/learning/atoms/std-learn-arrangement.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-classify.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-derivation.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-doser.lolo +9 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-estimate.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-fx-cues.lolo +147 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-goal-seek.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-hotspot.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-predict.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-scatter-fit.lolo +9 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-speed-drill.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-tour-3d.lolo +9 -0
- package/behaviors/registry/ui/core/molecules/ui-fx-overlay.orb +281 -0
- package/behaviors/registry/ui/core/molecules/ui-page-header.orb +1 -1
- package/behaviors/registry/ui/core/organisms/ui-form-section.orb +6 -0
- package/behaviors/registry/ui/core/organisms/ui-form.orb +6 -0
- package/behaviors/registry/ui/core/templates/ui-dashboard-layout.orb +2 -2
- package/behaviors/registry/ui/game/atoms/std-fx-particles.orb +265 -4
- package/behaviors/registry/ui/game/atoms/std-platformer-body.orb +2136 -0
- package/behaviors/registry/ui/game/atoms/ui-draw-fx-layer.orb +523 -0
- package/behaviors/registry/ui/game/organisms/std-arcade-board-3d.orb +159 -70
- package/behaviors/registry/ui/game/organisms/std-crew-board-2d.orb +148 -58
- package/behaviors/registry/ui/game/organisms/std-dungeon-board-2d.orb +169 -58
- package/behaviors/registry/ui/game/organisms/std-market-board-3d.orb +160 -70
- package/behaviors/registry/ui/game/organisms/std-objective-board-3d.orb +151 -60
- package/behaviors/registry/ui/game/organisms/std-platformer-board-2d.orb +2981 -0
- package/behaviors/registry/ui/game/organisms/std-survival-board-3d.orb +150 -60
- package/behaviors/registry/ui/game/organisms/std-tactics-board-2d.orb +163 -316
- package/behaviors/registry/ui/game/organisms/std-tactics-board-3d.orb +156 -184
- package/behaviors/registry/ui/learning/atoms/std-learn-arrangement.orb +62 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-classify.orb +73 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-derivation.orb +66 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-doser.orb +71 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-estimate.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-fx-cues.orb +1546 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-goal-seek.orb +58 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-hotspot.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-predict.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-scatter-fit.orb +71 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-speed-drill.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-tour-3d.orb +176 -0
- package/dist/behaviors/exports-reader.js +8369 -5005
- package/dist/behaviors/functions/index.d.ts +604 -14
- package/dist/behaviors/functions/index.js +8354 -5006
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +8370 -5006
- package/dist/behaviors/query.js +8369 -5005
- package/dist/behaviors-embeddings.hash.json +3 -3
- package/dist/behaviors-embeddings.json +351 -331
- package/dist/behaviors-registry.json +1879 -344
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8370 -5006
- package/dist/knob-embeddings.hash.json +3 -3
- package/dist/knob-embeddings.json +1 -1
- package/dist/registry/factory-signatures.json +1 -1
- package/package.json +2 -2
|
@@ -378,16 +378,51 @@
|
|
|
378
378
|
"default": [],
|
|
379
379
|
"items": {
|
|
380
380
|
"properties": {
|
|
381
|
+
"bornAt": {
|
|
382
|
+
"name": "bornAt",
|
|
383
|
+
"required": false,
|
|
384
|
+
"type": "number"
|
|
385
|
+
},
|
|
386
|
+
"color": {
|
|
387
|
+
"name": "color",
|
|
388
|
+
"required": false,
|
|
389
|
+
"type": "string"
|
|
390
|
+
},
|
|
391
|
+
"effect": {
|
|
392
|
+
"name": "effect",
|
|
393
|
+
"required": false,
|
|
394
|
+
"type": "string"
|
|
395
|
+
},
|
|
381
396
|
"id": {
|
|
382
397
|
"name": "id",
|
|
383
398
|
"required": true,
|
|
384
399
|
"type": "string"
|
|
385
400
|
},
|
|
401
|
+
"maxTtl": {
|
|
402
|
+
"name": "maxTtl",
|
|
403
|
+
"required": false,
|
|
404
|
+
"type": "number"
|
|
405
|
+
},
|
|
386
406
|
"message": {
|
|
387
407
|
"name": "message",
|
|
388
408
|
"required": false,
|
|
389
409
|
"type": "string"
|
|
390
410
|
},
|
|
411
|
+
"particleCount": {
|
|
412
|
+
"name": "particleCount",
|
|
413
|
+
"required": false,
|
|
414
|
+
"type": "number"
|
|
415
|
+
},
|
|
416
|
+
"size": {
|
|
417
|
+
"name": "size",
|
|
418
|
+
"required": false,
|
|
419
|
+
"type": "number"
|
|
420
|
+
},
|
|
421
|
+
"space": {
|
|
422
|
+
"name": "space",
|
|
423
|
+
"required": false,
|
|
424
|
+
"type": "string"
|
|
425
|
+
},
|
|
391
426
|
"ttl": {
|
|
392
427
|
"name": "ttl",
|
|
393
428
|
"required": true,
|
|
@@ -398,6 +433,21 @@
|
|
|
398
433
|
"required": true,
|
|
399
434
|
"type": "string"
|
|
400
435
|
},
|
|
436
|
+
"vx": {
|
|
437
|
+
"name": "vx",
|
|
438
|
+
"required": false,
|
|
439
|
+
"type": "number"
|
|
440
|
+
},
|
|
441
|
+
"vy": {
|
|
442
|
+
"name": "vy",
|
|
443
|
+
"required": false,
|
|
444
|
+
"type": "number"
|
|
445
|
+
},
|
|
446
|
+
"vz": {
|
|
447
|
+
"name": "vz",
|
|
448
|
+
"required": false,
|
|
449
|
+
"type": "number"
|
|
450
|
+
},
|
|
401
451
|
"x": {
|
|
402
452
|
"name": "x",
|
|
403
453
|
"required": true,
|
|
@@ -1653,6 +1703,99 @@
|
|
|
1653
1703
|
"tier": "presentation",
|
|
1654
1704
|
"type": "[Feature]"
|
|
1655
1705
|
},
|
|
1706
|
+
"fxPresets": {
|
|
1707
|
+
"default": [
|
|
1708
|
+
{
|
|
1709
|
+
"color": "#ff6b6b",
|
|
1710
|
+
"color2": "#ffb347",
|
|
1711
|
+
"count": 6.0,
|
|
1712
|
+
"glow": 0.12,
|
|
1713
|
+
"shape": "spark",
|
|
1714
|
+
"size": 0.45,
|
|
1715
|
+
"type": "hit",
|
|
1716
|
+
"vy": -0.3
|
|
1717
|
+
}
|
|
1718
|
+
],
|
|
1719
|
+
"description": "This board's effect vocabulary — one look/recipe row per fx type its mechanics emit; unknown types fall back to a neutral spark.",
|
|
1720
|
+
"items": {
|
|
1721
|
+
"properties": {
|
|
1722
|
+
"color": {
|
|
1723
|
+
"name": "color",
|
|
1724
|
+
"required": false,
|
|
1725
|
+
"type": "string"
|
|
1726
|
+
},
|
|
1727
|
+
"color2": {
|
|
1728
|
+
"name": "color2",
|
|
1729
|
+
"required": false,
|
|
1730
|
+
"type": "string"
|
|
1731
|
+
},
|
|
1732
|
+
"count": {
|
|
1733
|
+
"name": "count",
|
|
1734
|
+
"required": false,
|
|
1735
|
+
"type": "number"
|
|
1736
|
+
},
|
|
1737
|
+
"effect": {
|
|
1738
|
+
"name": "effect",
|
|
1739
|
+
"required": false,
|
|
1740
|
+
"type": "string"
|
|
1741
|
+
},
|
|
1742
|
+
"glow": {
|
|
1743
|
+
"name": "glow",
|
|
1744
|
+
"required": false,
|
|
1745
|
+
"type": "number"
|
|
1746
|
+
},
|
|
1747
|
+
"gravity": {
|
|
1748
|
+
"name": "gravity",
|
|
1749
|
+
"required": false,
|
|
1750
|
+
"type": "number"
|
|
1751
|
+
},
|
|
1752
|
+
"particleCount": {
|
|
1753
|
+
"name": "particleCount",
|
|
1754
|
+
"required": false,
|
|
1755
|
+
"type": "number"
|
|
1756
|
+
},
|
|
1757
|
+
"shape": {
|
|
1758
|
+
"name": "shape",
|
|
1759
|
+
"required": false,
|
|
1760
|
+
"type": "string"
|
|
1761
|
+
},
|
|
1762
|
+
"size": {
|
|
1763
|
+
"name": "size",
|
|
1764
|
+
"required": false,
|
|
1765
|
+
"type": "number"
|
|
1766
|
+
},
|
|
1767
|
+
"space": {
|
|
1768
|
+
"name": "space",
|
|
1769
|
+
"required": false,
|
|
1770
|
+
"type": "string"
|
|
1771
|
+
},
|
|
1772
|
+
"type": {
|
|
1773
|
+
"name": "type",
|
|
1774
|
+
"required": true,
|
|
1775
|
+
"type": "string"
|
|
1776
|
+
},
|
|
1777
|
+
"vx": {
|
|
1778
|
+
"name": "vx",
|
|
1779
|
+
"required": false,
|
|
1780
|
+
"type": "number"
|
|
1781
|
+
},
|
|
1782
|
+
"vy": {
|
|
1783
|
+
"name": "vy",
|
|
1784
|
+
"required": false,
|
|
1785
|
+
"type": "number"
|
|
1786
|
+
},
|
|
1787
|
+
"vz": {
|
|
1788
|
+
"name": "vz",
|
|
1789
|
+
"required": false,
|
|
1790
|
+
"type": "number"
|
|
1791
|
+
}
|
|
1792
|
+
},
|
|
1793
|
+
"type": "object"
|
|
1794
|
+
},
|
|
1795
|
+
"label": "Fx Presets",
|
|
1796
|
+
"tier": "presentation",
|
|
1797
|
+
"type": "[FxPreset]"
|
|
1798
|
+
},
|
|
1656
1799
|
"gridHeight": {
|
|
1657
1800
|
"default": 2.0,
|
|
1658
1801
|
"description": "Grid row count (matches TacticsAuthority.gridHeight).",
|
|
@@ -3131,169 +3274,21 @@
|
|
|
3131
3274
|
"type": "draw-text-layer"
|
|
3132
3275
|
},
|
|
3133
3276
|
{
|
|
3134
|
-
"
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
"color": "#ffe066",
|
|
3142
|
-
"position": {
|
|
3143
|
-
"x": [
|
|
3144
|
-
"object/get",
|
|
3145
|
-
"@f",
|
|
3146
|
-
"x"
|
|
3147
|
-
],
|
|
3148
|
-
"y": [
|
|
3149
|
-
"object/get",
|
|
3150
|
-
"@f",
|
|
3151
|
-
"z"
|
|
3152
|
-
]
|
|
3153
|
-
},
|
|
3154
|
-
"text": [
|
|
3155
|
-
"object/get",
|
|
3156
|
-
"@f",
|
|
3157
|
-
"message"
|
|
3158
|
-
],
|
|
3159
|
-
"type": "draw-text"
|
|
3160
|
-
}
|
|
3161
|
-
]
|
|
3162
|
-
],
|
|
3163
|
-
"type": "draw-text-layer"
|
|
3164
|
-
},
|
|
3165
|
-
{
|
|
3166
|
-
"items": [
|
|
3167
|
-
"array/filter",
|
|
3168
|
-
[
|
|
3169
|
-
"array/map",
|
|
3170
|
-
[
|
|
3171
|
-
"array/filter",
|
|
3172
|
-
"@entity.fx",
|
|
3173
|
-
[
|
|
3174
|
-
"fn",
|
|
3175
|
-
"f",
|
|
3176
|
-
[
|
|
3177
|
-
"not",
|
|
3178
|
-
[
|
|
3179
|
-
"object/get",
|
|
3180
|
-
"@entity.svgAssetArt",
|
|
3181
|
-
[
|
|
3182
|
-
"object/get",
|
|
3183
|
-
"@f",
|
|
3184
|
-
"type"
|
|
3185
|
-
]
|
|
3186
|
-
]
|
|
3187
|
-
]
|
|
3188
|
-
]
|
|
3189
|
-
],
|
|
3190
|
-
[
|
|
3191
|
-
"fn",
|
|
3192
|
-
"f",
|
|
3193
|
-
{
|
|
3194
|
-
"anchor": "center",
|
|
3195
|
-
"asset": [
|
|
3196
|
-
"object/get",
|
|
3197
|
-
[
|
|
3198
|
-
"object/get",
|
|
3199
|
-
"@config.assetManifest",
|
|
3200
|
-
"effects"
|
|
3201
|
-
],
|
|
3202
|
-
[
|
|
3203
|
-
"object/get",
|
|
3204
|
-
"@f",
|
|
3205
|
-
"type"
|
|
3206
|
-
]
|
|
3207
|
-
],
|
|
3208
|
-
"height": 0.6,
|
|
3209
|
-
"position": {
|
|
3210
|
-
"x": [
|
|
3211
|
-
"object/get",
|
|
3212
|
-
"@f",
|
|
3213
|
-
"x"
|
|
3214
|
-
],
|
|
3215
|
-
"y": [
|
|
3216
|
-
"object/get",
|
|
3217
|
-
"@f",
|
|
3218
|
-
"z"
|
|
3219
|
-
]
|
|
3220
|
-
},
|
|
3221
|
-
"type": "draw-sprite",
|
|
3222
|
-
"width": 0.6
|
|
3223
|
-
}
|
|
3224
|
-
]
|
|
3225
|
-
],
|
|
3226
|
-
[
|
|
3227
|
-
"fn",
|
|
3228
|
-
"s",
|
|
3229
|
-
[
|
|
3230
|
-
"object/get",
|
|
3231
|
-
[
|
|
3232
|
-
"object/get",
|
|
3233
|
-
"@s",
|
|
3234
|
-
"asset"
|
|
3235
|
-
],
|
|
3236
|
-
"url"
|
|
3237
|
-
]
|
|
3238
|
-
]
|
|
3277
|
+
"art": "@entity.svgAssetArt",
|
|
3278
|
+
"items": "@entity.fx",
|
|
3279
|
+
"presets": "@config.fxPresets",
|
|
3280
|
+
"sprites": [
|
|
3281
|
+
"object/get",
|
|
3282
|
+
"@config.assetManifest",
|
|
3283
|
+
"effects"
|
|
3239
3284
|
],
|
|
3240
|
-
"
|
|
3285
|
+
"tickMs": 500.0,
|
|
3286
|
+
"type": "draw-fx-layer"
|
|
3241
3287
|
}
|
|
3242
3288
|
],
|
|
3243
3289
|
[
|
|
3244
3290
|
"array/concat",
|
|
3245
|
-
[
|
|
3246
|
-
"array/map",
|
|
3247
|
-
[
|
|
3248
|
-
"array/filter",
|
|
3249
|
-
"@entity.fx",
|
|
3250
|
-
[
|
|
3251
|
-
"fn",
|
|
3252
|
-
"f",
|
|
3253
|
-
[
|
|
3254
|
-
"object/get",
|
|
3255
|
-
"@entity.svgAssetArt",
|
|
3256
|
-
[
|
|
3257
|
-
"object/get",
|
|
3258
|
-
"@f",
|
|
3259
|
-
"type"
|
|
3260
|
-
]
|
|
3261
|
-
]
|
|
3262
|
-
]
|
|
3263
|
-
],
|
|
3264
|
-
[
|
|
3265
|
-
"fn",
|
|
3266
|
-
"f",
|
|
3267
|
-
{
|
|
3268
|
-
"items": [
|
|
3269
|
-
"object/get",
|
|
3270
|
-
[
|
|
3271
|
-
"object/get",
|
|
3272
|
-
"@entity.svgAssetArt",
|
|
3273
|
-
[
|
|
3274
|
-
"object/get",
|
|
3275
|
-
"@f",
|
|
3276
|
-
"type"
|
|
3277
|
-
]
|
|
3278
|
-
],
|
|
3279
|
-
"idle"
|
|
3280
|
-
],
|
|
3281
|
-
"position": {
|
|
3282
|
-
"x": [
|
|
3283
|
-
"object/get",
|
|
3284
|
-
"@f",
|
|
3285
|
-
"x"
|
|
3286
|
-
],
|
|
3287
|
-
"y": [
|
|
3288
|
-
"object/get",
|
|
3289
|
-
"@f",
|
|
3290
|
-
"z"
|
|
3291
|
-
]
|
|
3292
|
-
},
|
|
3293
|
-
"type": "draw-group"
|
|
3294
|
-
}
|
|
3295
|
-
]
|
|
3296
|
-
],
|
|
3291
|
+
[],
|
|
3297
3292
|
[
|
|
3298
3293
|
{
|
|
3299
3294
|
"items": [
|
|
@@ -5691,167 +5686,19 @@
|
|
|
5691
5686
|
"type": "draw-text-layer"
|
|
5692
5687
|
},
|
|
5693
5688
|
{
|
|
5694
|
-
"
|
|
5695
|
-
|
|
5696
|
-
|
|
5697
|
-
|
|
5698
|
-
|
|
5699
|
-
|
|
5700
|
-
|
|
5701
|
-
"color": "#ffe066",
|
|
5702
|
-
"position": {
|
|
5703
|
-
"x": [
|
|
5704
|
-
"object/get",
|
|
5705
|
-
"@f",
|
|
5706
|
-
"x"
|
|
5707
|
-
],
|
|
5708
|
-
"y": [
|
|
5709
|
-
"object/get",
|
|
5710
|
-
"@f",
|
|
5711
|
-
"z"
|
|
5712
|
-
]
|
|
5713
|
-
},
|
|
5714
|
-
"text": [
|
|
5715
|
-
"object/get",
|
|
5716
|
-
"@f",
|
|
5717
|
-
"message"
|
|
5718
|
-
],
|
|
5719
|
-
"type": "draw-text"
|
|
5720
|
-
}
|
|
5721
|
-
]
|
|
5722
|
-
],
|
|
5723
|
-
"type": "draw-text-layer"
|
|
5724
|
-
},
|
|
5725
|
-
{
|
|
5726
|
-
"items": [
|
|
5727
|
-
"array/filter",
|
|
5728
|
-
[
|
|
5729
|
-
"array/map",
|
|
5730
|
-
[
|
|
5731
|
-
"array/filter",
|
|
5732
|
-
"@entity.fx",
|
|
5733
|
-
[
|
|
5734
|
-
"fn",
|
|
5735
|
-
"f",
|
|
5736
|
-
[
|
|
5737
|
-
"not",
|
|
5738
|
-
[
|
|
5739
|
-
"object/get",
|
|
5740
|
-
"@entity.svgAssetArt",
|
|
5741
|
-
[
|
|
5742
|
-
"object/get",
|
|
5743
|
-
"@f",
|
|
5744
|
-
"type"
|
|
5745
|
-
]
|
|
5746
|
-
]
|
|
5747
|
-
]
|
|
5748
|
-
]
|
|
5749
|
-
],
|
|
5750
|
-
[
|
|
5751
|
-
"fn",
|
|
5752
|
-
"f",
|
|
5753
|
-
{
|
|
5754
|
-
"anchor": "center",
|
|
5755
|
-
"asset": [
|
|
5756
|
-
"object/get",
|
|
5757
|
-
[
|
|
5758
|
-
"object/get",
|
|
5759
|
-
"@config.assetManifest",
|
|
5760
|
-
"effects"
|
|
5761
|
-
],
|
|
5762
|
-
[
|
|
5763
|
-
"object/get",
|
|
5764
|
-
"@f",
|
|
5765
|
-
"type"
|
|
5766
|
-
]
|
|
5767
|
-
],
|
|
5768
|
-
"height": 0.6,
|
|
5769
|
-
"position": {
|
|
5770
|
-
"x": [
|
|
5771
|
-
"object/get",
|
|
5772
|
-
"@f",
|
|
5773
|
-
"x"
|
|
5774
|
-
],
|
|
5775
|
-
"y": [
|
|
5776
|
-
"object/get",
|
|
5777
|
-
"@f",
|
|
5778
|
-
"z"
|
|
5779
|
-
]
|
|
5780
|
-
},
|
|
5781
|
-
"type": "draw-sprite",
|
|
5782
|
-
"width": 0.6
|
|
5783
|
-
}
|
|
5784
|
-
]
|
|
5785
|
-
],
|
|
5786
|
-
[
|
|
5787
|
-
"fn",
|
|
5788
|
-
"s",
|
|
5789
|
-
[
|
|
5790
|
-
"object/get",
|
|
5791
|
-
[
|
|
5792
|
-
"object/get",
|
|
5793
|
-
"@s",
|
|
5794
|
-
"asset"
|
|
5795
|
-
],
|
|
5796
|
-
"url"
|
|
5797
|
-
]
|
|
5798
|
-
]
|
|
5689
|
+
"art": "@entity.svgAssetArt",
|
|
5690
|
+
"items": "@entity.fx",
|
|
5691
|
+
"presets": "@config.fxPresets",
|
|
5692
|
+
"sprites": [
|
|
5693
|
+
"object/get",
|
|
5694
|
+
"@config.assetManifest",
|
|
5695
|
+
"effects"
|
|
5799
5696
|
],
|
|
5800
|
-
"
|
|
5697
|
+
"tickMs": 500.0,
|
|
5698
|
+
"type": "draw-fx-layer"
|
|
5801
5699
|
}
|
|
5802
5700
|
],
|
|
5803
|
-
[
|
|
5804
|
-
"array/map",
|
|
5805
|
-
[
|
|
5806
|
-
"array/filter",
|
|
5807
|
-
"@entity.fx",
|
|
5808
|
-
[
|
|
5809
|
-
"fn",
|
|
5810
|
-
"f",
|
|
5811
|
-
[
|
|
5812
|
-
"object/get",
|
|
5813
|
-
"@entity.svgAssetArt",
|
|
5814
|
-
[
|
|
5815
|
-
"object/get",
|
|
5816
|
-
"@f",
|
|
5817
|
-
"type"
|
|
5818
|
-
]
|
|
5819
|
-
]
|
|
5820
|
-
]
|
|
5821
|
-
],
|
|
5822
|
-
[
|
|
5823
|
-
"fn",
|
|
5824
|
-
"f",
|
|
5825
|
-
{
|
|
5826
|
-
"items": [
|
|
5827
|
-
"object/get",
|
|
5828
|
-
[
|
|
5829
|
-
"object/get",
|
|
5830
|
-
"@entity.svgAssetArt",
|
|
5831
|
-
[
|
|
5832
|
-
"object/get",
|
|
5833
|
-
"@f",
|
|
5834
|
-
"type"
|
|
5835
|
-
]
|
|
5836
|
-
],
|
|
5837
|
-
"idle"
|
|
5838
|
-
],
|
|
5839
|
-
"position": {
|
|
5840
|
-
"x": [
|
|
5841
|
-
"object/get",
|
|
5842
|
-
"@f",
|
|
5843
|
-
"x"
|
|
5844
|
-
],
|
|
5845
|
-
"y": [
|
|
5846
|
-
"object/get",
|
|
5847
|
-
"@f",
|
|
5848
|
-
"z"
|
|
5849
|
-
]
|
|
5850
|
-
},
|
|
5851
|
-
"type": "draw-group"
|
|
5852
|
-
}
|
|
5853
|
-
]
|
|
5854
|
-
]
|
|
5701
|
+
[]
|
|
5855
5702
|
]
|
|
5856
5703
|
]
|
|
5857
5704
|
]
|