@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
|
@@ -724,16 +724,51 @@
|
|
|
724
724
|
"default": [],
|
|
725
725
|
"items": {
|
|
726
726
|
"properties": {
|
|
727
|
+
"bornAt": {
|
|
728
|
+
"name": "bornAt",
|
|
729
|
+
"required": false,
|
|
730
|
+
"type": "number"
|
|
731
|
+
},
|
|
732
|
+
"color": {
|
|
733
|
+
"name": "color",
|
|
734
|
+
"required": false,
|
|
735
|
+
"type": "string"
|
|
736
|
+
},
|
|
737
|
+
"effect": {
|
|
738
|
+
"name": "effect",
|
|
739
|
+
"required": false,
|
|
740
|
+
"type": "string"
|
|
741
|
+
},
|
|
727
742
|
"id": {
|
|
728
743
|
"name": "id",
|
|
729
744
|
"required": true,
|
|
730
745
|
"type": "string"
|
|
731
746
|
},
|
|
747
|
+
"maxTtl": {
|
|
748
|
+
"name": "maxTtl",
|
|
749
|
+
"required": false,
|
|
750
|
+
"type": "number"
|
|
751
|
+
},
|
|
732
752
|
"message": {
|
|
733
753
|
"name": "message",
|
|
734
754
|
"required": false,
|
|
735
755
|
"type": "string"
|
|
736
756
|
},
|
|
757
|
+
"particleCount": {
|
|
758
|
+
"name": "particleCount",
|
|
759
|
+
"required": false,
|
|
760
|
+
"type": "number"
|
|
761
|
+
},
|
|
762
|
+
"size": {
|
|
763
|
+
"name": "size",
|
|
764
|
+
"required": false,
|
|
765
|
+
"type": "number"
|
|
766
|
+
},
|
|
767
|
+
"space": {
|
|
768
|
+
"name": "space",
|
|
769
|
+
"required": false,
|
|
770
|
+
"type": "string"
|
|
771
|
+
},
|
|
737
772
|
"ttl": {
|
|
738
773
|
"name": "ttl",
|
|
739
774
|
"required": true,
|
|
@@ -744,6 +779,21 @@
|
|
|
744
779
|
"required": true,
|
|
745
780
|
"type": "string"
|
|
746
781
|
},
|
|
782
|
+
"vx": {
|
|
783
|
+
"name": "vx",
|
|
784
|
+
"required": false,
|
|
785
|
+
"type": "number"
|
|
786
|
+
},
|
|
787
|
+
"vy": {
|
|
788
|
+
"name": "vy",
|
|
789
|
+
"required": false,
|
|
790
|
+
"type": "number"
|
|
791
|
+
},
|
|
792
|
+
"vz": {
|
|
793
|
+
"name": "vz",
|
|
794
|
+
"required": false,
|
|
795
|
+
"type": "number"
|
|
796
|
+
},
|
|
747
797
|
"x": {
|
|
748
798
|
"name": "x",
|
|
749
799
|
"required": true,
|
|
@@ -1499,6 +1549,107 @@
|
|
|
1499
1549
|
"tier": "presentation",
|
|
1500
1550
|
"type": "[Feature]"
|
|
1501
1551
|
},
|
|
1552
|
+
"fxPresets": {
|
|
1553
|
+
"default": [
|
|
1554
|
+
{
|
|
1555
|
+
"color": "#ffd23f",
|
|
1556
|
+
"color2": "#ff6b35",
|
|
1557
|
+
"count": 7.0,
|
|
1558
|
+
"glow": 0.16,
|
|
1559
|
+
"shape": "spark",
|
|
1560
|
+
"size": 0.55,
|
|
1561
|
+
"type": "score",
|
|
1562
|
+
"vy": -0.3
|
|
1563
|
+
},
|
|
1564
|
+
{
|
|
1565
|
+
"color": "#38bdf8",
|
|
1566
|
+
"color2": "#0c4a6e",
|
|
1567
|
+
"count": 4.0,
|
|
1568
|
+
"shape": "puff",
|
|
1569
|
+
"size": 0.4,
|
|
1570
|
+
"type": "info"
|
|
1571
|
+
}
|
|
1572
|
+
],
|
|
1573
|
+
"description": "This board's effect vocabulary — one look/recipe row per fx type its mechanics emit; unknown types fall back to a neutral spark.",
|
|
1574
|
+
"items": {
|
|
1575
|
+
"properties": {
|
|
1576
|
+
"color": {
|
|
1577
|
+
"name": "color",
|
|
1578
|
+
"required": false,
|
|
1579
|
+
"type": "string"
|
|
1580
|
+
},
|
|
1581
|
+
"color2": {
|
|
1582
|
+
"name": "color2",
|
|
1583
|
+
"required": false,
|
|
1584
|
+
"type": "string"
|
|
1585
|
+
},
|
|
1586
|
+
"count": {
|
|
1587
|
+
"name": "count",
|
|
1588
|
+
"required": false,
|
|
1589
|
+
"type": "number"
|
|
1590
|
+
},
|
|
1591
|
+
"effect": {
|
|
1592
|
+
"name": "effect",
|
|
1593
|
+
"required": false,
|
|
1594
|
+
"type": "string"
|
|
1595
|
+
},
|
|
1596
|
+
"glow": {
|
|
1597
|
+
"name": "glow",
|
|
1598
|
+
"required": false,
|
|
1599
|
+
"type": "number"
|
|
1600
|
+
},
|
|
1601
|
+
"gravity": {
|
|
1602
|
+
"name": "gravity",
|
|
1603
|
+
"required": false,
|
|
1604
|
+
"type": "number"
|
|
1605
|
+
},
|
|
1606
|
+
"particleCount": {
|
|
1607
|
+
"name": "particleCount",
|
|
1608
|
+
"required": false,
|
|
1609
|
+
"type": "number"
|
|
1610
|
+
},
|
|
1611
|
+
"shape": {
|
|
1612
|
+
"name": "shape",
|
|
1613
|
+
"required": false,
|
|
1614
|
+
"type": "string"
|
|
1615
|
+
},
|
|
1616
|
+
"size": {
|
|
1617
|
+
"name": "size",
|
|
1618
|
+
"required": false,
|
|
1619
|
+
"type": "number"
|
|
1620
|
+
},
|
|
1621
|
+
"space": {
|
|
1622
|
+
"name": "space",
|
|
1623
|
+
"required": false,
|
|
1624
|
+
"type": "string"
|
|
1625
|
+
},
|
|
1626
|
+
"type": {
|
|
1627
|
+
"name": "type",
|
|
1628
|
+
"required": true,
|
|
1629
|
+
"type": "string"
|
|
1630
|
+
},
|
|
1631
|
+
"vx": {
|
|
1632
|
+
"name": "vx",
|
|
1633
|
+
"required": false,
|
|
1634
|
+
"type": "number"
|
|
1635
|
+
},
|
|
1636
|
+
"vy": {
|
|
1637
|
+
"name": "vy",
|
|
1638
|
+
"required": false,
|
|
1639
|
+
"type": "number"
|
|
1640
|
+
},
|
|
1641
|
+
"vz": {
|
|
1642
|
+
"name": "vz",
|
|
1643
|
+
"required": false,
|
|
1644
|
+
"type": "number"
|
|
1645
|
+
}
|
|
1646
|
+
},
|
|
1647
|
+
"type": "object"
|
|
1648
|
+
},
|
|
1649
|
+
"label": "Fx Presets",
|
|
1650
|
+
"tier": "presentation",
|
|
1651
|
+
"type": "[FxPreset]"
|
|
1652
|
+
},
|
|
1502
1653
|
"goalText": {
|
|
1503
1654
|
"default": "Collect tickets from the arcade machines to win",
|
|
1504
1655
|
"description": "Static HUD hint describing the win condition.",
|
|
@@ -2326,41 +2477,10 @@
|
|
|
2326
2477
|
"type": "draw-text-layer"
|
|
2327
2478
|
},
|
|
2328
2479
|
{
|
|
2329
|
-
"items":
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
"fn",
|
|
2334
|
-
"f",
|
|
2335
|
-
{
|
|
2336
|
-
"color": "#ffe066",
|
|
2337
|
-
"position": {
|
|
2338
|
-
"x": [
|
|
2339
|
-
"object/get",
|
|
2340
|
-
"@f",
|
|
2341
|
-
"x"
|
|
2342
|
-
],
|
|
2343
|
-
"y": [
|
|
2344
|
-
"object/get",
|
|
2345
|
-
"@f",
|
|
2346
|
-
"y"
|
|
2347
|
-
],
|
|
2348
|
-
"z": [
|
|
2349
|
-
"object/get",
|
|
2350
|
-
"@f",
|
|
2351
|
-
"z"
|
|
2352
|
-
]
|
|
2353
|
-
},
|
|
2354
|
-
"text": [
|
|
2355
|
-
"object/get",
|
|
2356
|
-
"@f",
|
|
2357
|
-
"message"
|
|
2358
|
-
],
|
|
2359
|
-
"type": "draw-text"
|
|
2360
|
-
}
|
|
2361
|
-
]
|
|
2362
|
-
],
|
|
2363
|
-
"type": "draw-text-layer"
|
|
2480
|
+
"items": "@entity.fx",
|
|
2481
|
+
"presets": "@config.fxPresets",
|
|
2482
|
+
"tickMs": 500.0,
|
|
2483
|
+
"type": "draw-fx-layer"
|
|
2364
2484
|
}
|
|
2365
2485
|
],
|
|
2366
2486
|
"featureClickEvent": "FEATURE_CLICK",
|
|
@@ -3308,41 +3428,10 @@
|
|
|
3308
3428
|
"type": "draw-text-layer"
|
|
3309
3429
|
},
|
|
3310
3430
|
{
|
|
3311
|
-
"items":
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
"fn",
|
|
3316
|
-
"f",
|
|
3317
|
-
{
|
|
3318
|
-
"color": "#ffe066",
|
|
3319
|
-
"position": {
|
|
3320
|
-
"x": [
|
|
3321
|
-
"object/get",
|
|
3322
|
-
"@f",
|
|
3323
|
-
"x"
|
|
3324
|
-
],
|
|
3325
|
-
"y": [
|
|
3326
|
-
"object/get",
|
|
3327
|
-
"@f",
|
|
3328
|
-
"y"
|
|
3329
|
-
],
|
|
3330
|
-
"z": [
|
|
3331
|
-
"object/get",
|
|
3332
|
-
"@f",
|
|
3333
|
-
"z"
|
|
3334
|
-
]
|
|
3335
|
-
},
|
|
3336
|
-
"text": [
|
|
3337
|
-
"object/get",
|
|
3338
|
-
"@f",
|
|
3339
|
-
"message"
|
|
3340
|
-
],
|
|
3341
|
-
"type": "draw-text"
|
|
3342
|
-
}
|
|
3343
|
-
]
|
|
3344
|
-
],
|
|
3345
|
-
"type": "draw-text-layer"
|
|
3431
|
+
"items": "@entity.fx",
|
|
3432
|
+
"presets": "@config.fxPresets",
|
|
3433
|
+
"tickMs": 500.0,
|
|
3434
|
+
"type": "draw-fx-layer"
|
|
3346
3435
|
}
|
|
3347
3436
|
],
|
|
3348
3437
|
"featureClickEvent": "FEATURE_CLICK",
|
|
@@ -491,16 +491,51 @@
|
|
|
491
491
|
"default": [],
|
|
492
492
|
"items": {
|
|
493
493
|
"properties": {
|
|
494
|
+
"bornAt": {
|
|
495
|
+
"name": "bornAt",
|
|
496
|
+
"required": false,
|
|
497
|
+
"type": "number"
|
|
498
|
+
},
|
|
499
|
+
"color": {
|
|
500
|
+
"name": "color",
|
|
501
|
+
"required": false,
|
|
502
|
+
"type": "string"
|
|
503
|
+
},
|
|
504
|
+
"effect": {
|
|
505
|
+
"name": "effect",
|
|
506
|
+
"required": false,
|
|
507
|
+
"type": "string"
|
|
508
|
+
},
|
|
494
509
|
"id": {
|
|
495
510
|
"name": "id",
|
|
496
511
|
"required": true,
|
|
497
512
|
"type": "string"
|
|
498
513
|
},
|
|
514
|
+
"maxTtl": {
|
|
515
|
+
"name": "maxTtl",
|
|
516
|
+
"required": false,
|
|
517
|
+
"type": "number"
|
|
518
|
+
},
|
|
499
519
|
"message": {
|
|
500
520
|
"name": "message",
|
|
501
521
|
"required": false,
|
|
502
522
|
"type": "string"
|
|
503
523
|
},
|
|
524
|
+
"particleCount": {
|
|
525
|
+
"name": "particleCount",
|
|
526
|
+
"required": false,
|
|
527
|
+
"type": "number"
|
|
528
|
+
},
|
|
529
|
+
"size": {
|
|
530
|
+
"name": "size",
|
|
531
|
+
"required": false,
|
|
532
|
+
"type": "number"
|
|
533
|
+
},
|
|
534
|
+
"space": {
|
|
535
|
+
"name": "space",
|
|
536
|
+
"required": false,
|
|
537
|
+
"type": "string"
|
|
538
|
+
},
|
|
504
539
|
"ttl": {
|
|
505
540
|
"name": "ttl",
|
|
506
541
|
"required": true,
|
|
@@ -511,6 +546,21 @@
|
|
|
511
546
|
"required": true,
|
|
512
547
|
"type": "string"
|
|
513
548
|
},
|
|
549
|
+
"vx": {
|
|
550
|
+
"name": "vx",
|
|
551
|
+
"required": false,
|
|
552
|
+
"type": "number"
|
|
553
|
+
},
|
|
554
|
+
"vy": {
|
|
555
|
+
"name": "vy",
|
|
556
|
+
"required": false,
|
|
557
|
+
"type": "number"
|
|
558
|
+
},
|
|
559
|
+
"vz": {
|
|
560
|
+
"name": "vz",
|
|
561
|
+
"required": false,
|
|
562
|
+
"type": "number"
|
|
563
|
+
},
|
|
514
564
|
"x": {
|
|
515
565
|
"name": "x",
|
|
516
566
|
"required": true,
|
|
@@ -1423,6 +1473,88 @@
|
|
|
1423
1473
|
"tier": "presentation",
|
|
1424
1474
|
"type": "[Feature]"
|
|
1425
1475
|
},
|
|
1476
|
+
"fxPresets": {
|
|
1477
|
+
"default": [],
|
|
1478
|
+
"description": "This board's effect vocabulary — one look/recipe row per fx type; its composed mechanics currently emit none, so the channel is forward-compat only.",
|
|
1479
|
+
"items": {
|
|
1480
|
+
"properties": {
|
|
1481
|
+
"color": {
|
|
1482
|
+
"name": "color",
|
|
1483
|
+
"required": false,
|
|
1484
|
+
"type": "string"
|
|
1485
|
+
},
|
|
1486
|
+
"color2": {
|
|
1487
|
+
"name": "color2",
|
|
1488
|
+
"required": false,
|
|
1489
|
+
"type": "string"
|
|
1490
|
+
},
|
|
1491
|
+
"count": {
|
|
1492
|
+
"name": "count",
|
|
1493
|
+
"required": false,
|
|
1494
|
+
"type": "number"
|
|
1495
|
+
},
|
|
1496
|
+
"effect": {
|
|
1497
|
+
"name": "effect",
|
|
1498
|
+
"required": false,
|
|
1499
|
+
"type": "string"
|
|
1500
|
+
},
|
|
1501
|
+
"glow": {
|
|
1502
|
+
"name": "glow",
|
|
1503
|
+
"required": false,
|
|
1504
|
+
"type": "number"
|
|
1505
|
+
},
|
|
1506
|
+
"gravity": {
|
|
1507
|
+
"name": "gravity",
|
|
1508
|
+
"required": false,
|
|
1509
|
+
"type": "number"
|
|
1510
|
+
},
|
|
1511
|
+
"particleCount": {
|
|
1512
|
+
"name": "particleCount",
|
|
1513
|
+
"required": false,
|
|
1514
|
+
"type": "number"
|
|
1515
|
+
},
|
|
1516
|
+
"shape": {
|
|
1517
|
+
"name": "shape",
|
|
1518
|
+
"required": false,
|
|
1519
|
+
"type": "string"
|
|
1520
|
+
},
|
|
1521
|
+
"size": {
|
|
1522
|
+
"name": "size",
|
|
1523
|
+
"required": false,
|
|
1524
|
+
"type": "number"
|
|
1525
|
+
},
|
|
1526
|
+
"space": {
|
|
1527
|
+
"name": "space",
|
|
1528
|
+
"required": false,
|
|
1529
|
+
"type": "string"
|
|
1530
|
+
},
|
|
1531
|
+
"type": {
|
|
1532
|
+
"name": "type",
|
|
1533
|
+
"required": true,
|
|
1534
|
+
"type": "string"
|
|
1535
|
+
},
|
|
1536
|
+
"vx": {
|
|
1537
|
+
"name": "vx",
|
|
1538
|
+
"required": false,
|
|
1539
|
+
"type": "number"
|
|
1540
|
+
},
|
|
1541
|
+
"vy": {
|
|
1542
|
+
"name": "vy",
|
|
1543
|
+
"required": false,
|
|
1544
|
+
"type": "number"
|
|
1545
|
+
},
|
|
1546
|
+
"vz": {
|
|
1547
|
+
"name": "vz",
|
|
1548
|
+
"required": false,
|
|
1549
|
+
"type": "number"
|
|
1550
|
+
}
|
|
1551
|
+
},
|
|
1552
|
+
"type": "object"
|
|
1553
|
+
},
|
|
1554
|
+
"label": "Fx Presets",
|
|
1555
|
+
"tier": "presentation",
|
|
1556
|
+
"type": "[FxPreset]"
|
|
1557
|
+
},
|
|
1426
1558
|
"gridHeight": {
|
|
1427
1559
|
"default": 7.0,
|
|
1428
1560
|
"description": "Grid row count (matches CrewAuthority.gridHeight).",
|
|
@@ -2343,36 +2475,15 @@
|
|
|
2343
2475
|
"type": "draw-text-layer"
|
|
2344
2476
|
},
|
|
2345
2477
|
{
|
|
2346
|
-
"items":
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
{
|
|
2353
|
-
"color": "#ffe066",
|
|
2354
|
-
"position": {
|
|
2355
|
-
"x": [
|
|
2356
|
-
"object/get",
|
|
2357
|
-
"@f",
|
|
2358
|
-
"x"
|
|
2359
|
-
],
|
|
2360
|
-
"y": [
|
|
2361
|
-
"object/get",
|
|
2362
|
-
"@f",
|
|
2363
|
-
"y"
|
|
2364
|
-
]
|
|
2365
|
-
},
|
|
2366
|
-
"text": [
|
|
2367
|
-
"object/get",
|
|
2368
|
-
"@f",
|
|
2369
|
-
"message"
|
|
2370
|
-
],
|
|
2371
|
-
"type": "draw-text"
|
|
2372
|
-
}
|
|
2373
|
-
]
|
|
2478
|
+
"items": "@entity.fx",
|
|
2479
|
+
"presets": "@config.fxPresets",
|
|
2480
|
+
"sprites": [
|
|
2481
|
+
"object/get",
|
|
2482
|
+
"@config.assetManifest",
|
|
2483
|
+
"effects"
|
|
2374
2484
|
],
|
|
2375
|
-
"
|
|
2485
|
+
"tickMs": 500.0,
|
|
2486
|
+
"type": "draw-fx-layer"
|
|
2376
2487
|
},
|
|
2377
2488
|
{
|
|
2378
2489
|
"items": [
|
|
@@ -3676,36 +3787,15 @@
|
|
|
3676
3787
|
"type": "draw-text-layer"
|
|
3677
3788
|
},
|
|
3678
3789
|
{
|
|
3679
|
-
"items":
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
{
|
|
3686
|
-
"color": "#ffe066",
|
|
3687
|
-
"position": {
|
|
3688
|
-
"x": [
|
|
3689
|
-
"object/get",
|
|
3690
|
-
"@f",
|
|
3691
|
-
"x"
|
|
3692
|
-
],
|
|
3693
|
-
"y": [
|
|
3694
|
-
"object/get",
|
|
3695
|
-
"@f",
|
|
3696
|
-
"y"
|
|
3697
|
-
]
|
|
3698
|
-
},
|
|
3699
|
-
"text": [
|
|
3700
|
-
"object/get",
|
|
3701
|
-
"@f",
|
|
3702
|
-
"message"
|
|
3703
|
-
],
|
|
3704
|
-
"type": "draw-text"
|
|
3705
|
-
}
|
|
3706
|
-
]
|
|
3790
|
+
"items": "@entity.fx",
|
|
3791
|
+
"presets": "@config.fxPresets",
|
|
3792
|
+
"sprites": [
|
|
3793
|
+
"object/get",
|
|
3794
|
+
"@config.assetManifest",
|
|
3795
|
+
"effects"
|
|
3707
3796
|
],
|
|
3708
|
-
"
|
|
3797
|
+
"tickMs": 500.0,
|
|
3798
|
+
"type": "draw-fx-layer"
|
|
3709
3799
|
},
|
|
3710
3800
|
{
|
|
3711
3801
|
"items": [
|