@almadar/std 16.177.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 +413 -393
- 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
|
@@ -1128,16 +1128,51 @@
|
|
|
1128
1128
|
"default": [],
|
|
1129
1129
|
"items": {
|
|
1130
1130
|
"properties": {
|
|
1131
|
+
"bornAt": {
|
|
1132
|
+
"name": "bornAt",
|
|
1133
|
+
"required": false,
|
|
1134
|
+
"type": "number"
|
|
1135
|
+
},
|
|
1136
|
+
"color": {
|
|
1137
|
+
"name": "color",
|
|
1138
|
+
"required": false,
|
|
1139
|
+
"type": "string"
|
|
1140
|
+
},
|
|
1141
|
+
"effect": {
|
|
1142
|
+
"name": "effect",
|
|
1143
|
+
"required": false,
|
|
1144
|
+
"type": "string"
|
|
1145
|
+
},
|
|
1131
1146
|
"id": {
|
|
1132
1147
|
"name": "id",
|
|
1133
1148
|
"required": true,
|
|
1134
1149
|
"type": "string"
|
|
1135
1150
|
},
|
|
1151
|
+
"maxTtl": {
|
|
1152
|
+
"name": "maxTtl",
|
|
1153
|
+
"required": false,
|
|
1154
|
+
"type": "number"
|
|
1155
|
+
},
|
|
1136
1156
|
"message": {
|
|
1137
1157
|
"name": "message",
|
|
1138
1158
|
"required": false,
|
|
1139
1159
|
"type": "string"
|
|
1140
1160
|
},
|
|
1161
|
+
"particleCount": {
|
|
1162
|
+
"name": "particleCount",
|
|
1163
|
+
"required": false,
|
|
1164
|
+
"type": "number"
|
|
1165
|
+
},
|
|
1166
|
+
"size": {
|
|
1167
|
+
"name": "size",
|
|
1168
|
+
"required": false,
|
|
1169
|
+
"type": "number"
|
|
1170
|
+
},
|
|
1171
|
+
"space": {
|
|
1172
|
+
"name": "space",
|
|
1173
|
+
"required": false,
|
|
1174
|
+
"type": "string"
|
|
1175
|
+
},
|
|
1141
1176
|
"ttl": {
|
|
1142
1177
|
"name": "ttl",
|
|
1143
1178
|
"required": true,
|
|
@@ -1148,6 +1183,21 @@
|
|
|
1148
1183
|
"required": true,
|
|
1149
1184
|
"type": "string"
|
|
1150
1185
|
},
|
|
1186
|
+
"vx": {
|
|
1187
|
+
"name": "vx",
|
|
1188
|
+
"required": false,
|
|
1189
|
+
"type": "number"
|
|
1190
|
+
},
|
|
1191
|
+
"vy": {
|
|
1192
|
+
"name": "vy",
|
|
1193
|
+
"required": false,
|
|
1194
|
+
"type": "number"
|
|
1195
|
+
},
|
|
1196
|
+
"vz": {
|
|
1197
|
+
"name": "vz",
|
|
1198
|
+
"required": false,
|
|
1199
|
+
"type": "number"
|
|
1200
|
+
},
|
|
1151
1201
|
"x": {
|
|
1152
1202
|
"name": "x",
|
|
1153
1203
|
"required": true,
|
|
@@ -2490,6 +2540,109 @@
|
|
|
2490
2540
|
"tier": "presentation",
|
|
2491
2541
|
"type": "string"
|
|
2492
2542
|
},
|
|
2543
|
+
"fxPresets": {
|
|
2544
|
+
"default": [
|
|
2545
|
+
{
|
|
2546
|
+
"color": "#fb923c",
|
|
2547
|
+
"color2": "#7c2d12",
|
|
2548
|
+
"count": 8.0,
|
|
2549
|
+
"glow": 0.2,
|
|
2550
|
+
"gravity": 0.4,
|
|
2551
|
+
"shape": "ring",
|
|
2552
|
+
"size": 0.85,
|
|
2553
|
+
"type": "explosion"
|
|
2554
|
+
},
|
|
2555
|
+
{
|
|
2556
|
+
"color": "#ffe066",
|
|
2557
|
+
"color2": "#fff4cc",
|
|
2558
|
+
"count": 5.0,
|
|
2559
|
+
"glow": 0.1,
|
|
2560
|
+
"shape": "spark",
|
|
2561
|
+
"size": 0.4,
|
|
2562
|
+
"type": "pickup",
|
|
2563
|
+
"vy": -0.5
|
|
2564
|
+
}
|
|
2565
|
+
],
|
|
2566
|
+
"description": "This board's effect vocabulary — one look/recipe row per fx type its mechanics emit; unknown types fall back to a neutral spark.",
|
|
2567
|
+
"items": {
|
|
2568
|
+
"properties": {
|
|
2569
|
+
"color": {
|
|
2570
|
+
"name": "color",
|
|
2571
|
+
"required": false,
|
|
2572
|
+
"type": "string"
|
|
2573
|
+
},
|
|
2574
|
+
"color2": {
|
|
2575
|
+
"name": "color2",
|
|
2576
|
+
"required": false,
|
|
2577
|
+
"type": "string"
|
|
2578
|
+
},
|
|
2579
|
+
"count": {
|
|
2580
|
+
"name": "count",
|
|
2581
|
+
"required": false,
|
|
2582
|
+
"type": "number"
|
|
2583
|
+
},
|
|
2584
|
+
"effect": {
|
|
2585
|
+
"name": "effect",
|
|
2586
|
+
"required": false,
|
|
2587
|
+
"type": "string"
|
|
2588
|
+
},
|
|
2589
|
+
"glow": {
|
|
2590
|
+
"name": "glow",
|
|
2591
|
+
"required": false,
|
|
2592
|
+
"type": "number"
|
|
2593
|
+
},
|
|
2594
|
+
"gravity": {
|
|
2595
|
+
"name": "gravity",
|
|
2596
|
+
"required": false,
|
|
2597
|
+
"type": "number"
|
|
2598
|
+
},
|
|
2599
|
+
"particleCount": {
|
|
2600
|
+
"name": "particleCount",
|
|
2601
|
+
"required": false,
|
|
2602
|
+
"type": "number"
|
|
2603
|
+
},
|
|
2604
|
+
"shape": {
|
|
2605
|
+
"name": "shape",
|
|
2606
|
+
"required": false,
|
|
2607
|
+
"type": "string"
|
|
2608
|
+
},
|
|
2609
|
+
"size": {
|
|
2610
|
+
"name": "size",
|
|
2611
|
+
"required": false,
|
|
2612
|
+
"type": "number"
|
|
2613
|
+
},
|
|
2614
|
+
"space": {
|
|
2615
|
+
"name": "space",
|
|
2616
|
+
"required": false,
|
|
2617
|
+
"type": "string"
|
|
2618
|
+
},
|
|
2619
|
+
"type": {
|
|
2620
|
+
"name": "type",
|
|
2621
|
+
"required": true,
|
|
2622
|
+
"type": "string"
|
|
2623
|
+
},
|
|
2624
|
+
"vx": {
|
|
2625
|
+
"name": "vx",
|
|
2626
|
+
"required": false,
|
|
2627
|
+
"type": "number"
|
|
2628
|
+
},
|
|
2629
|
+
"vy": {
|
|
2630
|
+
"name": "vy",
|
|
2631
|
+
"required": false,
|
|
2632
|
+
"type": "number"
|
|
2633
|
+
},
|
|
2634
|
+
"vz": {
|
|
2635
|
+
"name": "vz",
|
|
2636
|
+
"required": false,
|
|
2637
|
+
"type": "number"
|
|
2638
|
+
}
|
|
2639
|
+
},
|
|
2640
|
+
"type": "object"
|
|
2641
|
+
},
|
|
2642
|
+
"label": "Fx Presets",
|
|
2643
|
+
"tier": "presentation",
|
|
2644
|
+
"type": "[FxPreset]"
|
|
2645
|
+
},
|
|
2493
2646
|
"gridHeight": {
|
|
2494
2647
|
"default": 4.0,
|
|
2495
2648
|
"description": "Grid row count (matches HeroAuthority/Enemies.gridHeight).",
|
|
@@ -3173,36 +3326,15 @@
|
|
|
3173
3326
|
"type": "draw-text-layer"
|
|
3174
3327
|
},
|
|
3175
3328
|
{
|
|
3176
|
-
"items":
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
{
|
|
3183
|
-
"color": "#ffe066",
|
|
3184
|
-
"position": {
|
|
3185
|
-
"x": [
|
|
3186
|
-
"object/get",
|
|
3187
|
-
"@f",
|
|
3188
|
-
"x"
|
|
3189
|
-
],
|
|
3190
|
-
"y": [
|
|
3191
|
-
"object/get",
|
|
3192
|
-
"@f",
|
|
3193
|
-
"z"
|
|
3194
|
-
]
|
|
3195
|
-
},
|
|
3196
|
-
"text": [
|
|
3197
|
-
"object/get",
|
|
3198
|
-
"@f",
|
|
3199
|
-
"message"
|
|
3200
|
-
],
|
|
3201
|
-
"type": "draw-text"
|
|
3202
|
-
}
|
|
3203
|
-
]
|
|
3329
|
+
"items": "@entity.fx",
|
|
3330
|
+
"presets": "@config.fxPresets",
|
|
3331
|
+
"sprites": [
|
|
3332
|
+
"object/get",
|
|
3333
|
+
"@config.assetManifest",
|
|
3334
|
+
"effects"
|
|
3204
3335
|
],
|
|
3205
|
-
"
|
|
3336
|
+
"tickMs": 500.0,
|
|
3337
|
+
"type": "draw-fx-layer"
|
|
3206
3338
|
}
|
|
3207
3339
|
],
|
|
3208
3340
|
"fit": true,
|
|
@@ -4505,36 +4637,15 @@
|
|
|
4505
4637
|
"type": "draw-text-layer"
|
|
4506
4638
|
},
|
|
4507
4639
|
{
|
|
4508
|
-
"items":
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
{
|
|
4515
|
-
"color": "#ffe066",
|
|
4516
|
-
"position": {
|
|
4517
|
-
"x": [
|
|
4518
|
-
"object/get",
|
|
4519
|
-
"@f",
|
|
4520
|
-
"x"
|
|
4521
|
-
],
|
|
4522
|
-
"y": [
|
|
4523
|
-
"object/get",
|
|
4524
|
-
"@f",
|
|
4525
|
-
"z"
|
|
4526
|
-
]
|
|
4527
|
-
},
|
|
4528
|
-
"text": [
|
|
4529
|
-
"object/get",
|
|
4530
|
-
"@f",
|
|
4531
|
-
"message"
|
|
4532
|
-
],
|
|
4533
|
-
"type": "draw-text"
|
|
4534
|
-
}
|
|
4535
|
-
]
|
|
4640
|
+
"items": "@entity.fx",
|
|
4641
|
+
"presets": "@config.fxPresets",
|
|
4642
|
+
"sprites": [
|
|
4643
|
+
"object/get",
|
|
4644
|
+
"@config.assetManifest",
|
|
4645
|
+
"effects"
|
|
4536
4646
|
],
|
|
4537
|
-
"
|
|
4647
|
+
"tickMs": 500.0,
|
|
4648
|
+
"type": "draw-fx-layer"
|
|
4538
4649
|
}
|
|
4539
4650
|
],
|
|
4540
4651
|
"fit": true,
|
|
@@ -958,16 +958,51 @@
|
|
|
958
958
|
"default": [],
|
|
959
959
|
"items": {
|
|
960
960
|
"properties": {
|
|
961
|
+
"bornAt": {
|
|
962
|
+
"name": "bornAt",
|
|
963
|
+
"required": false,
|
|
964
|
+
"type": "number"
|
|
965
|
+
},
|
|
966
|
+
"color": {
|
|
967
|
+
"name": "color",
|
|
968
|
+
"required": false,
|
|
969
|
+
"type": "string"
|
|
970
|
+
},
|
|
971
|
+
"effect": {
|
|
972
|
+
"name": "effect",
|
|
973
|
+
"required": false,
|
|
974
|
+
"type": "string"
|
|
975
|
+
},
|
|
961
976
|
"id": {
|
|
962
977
|
"name": "id",
|
|
963
978
|
"required": true,
|
|
964
979
|
"type": "string"
|
|
965
980
|
},
|
|
981
|
+
"maxTtl": {
|
|
982
|
+
"name": "maxTtl",
|
|
983
|
+
"required": false,
|
|
984
|
+
"type": "number"
|
|
985
|
+
},
|
|
966
986
|
"message": {
|
|
967
987
|
"name": "message",
|
|
968
988
|
"required": false,
|
|
969
989
|
"type": "string"
|
|
970
990
|
},
|
|
991
|
+
"particleCount": {
|
|
992
|
+
"name": "particleCount",
|
|
993
|
+
"required": false,
|
|
994
|
+
"type": "number"
|
|
995
|
+
},
|
|
996
|
+
"size": {
|
|
997
|
+
"name": "size",
|
|
998
|
+
"required": false,
|
|
999
|
+
"type": "number"
|
|
1000
|
+
},
|
|
1001
|
+
"space": {
|
|
1002
|
+
"name": "space",
|
|
1003
|
+
"required": false,
|
|
1004
|
+
"type": "string"
|
|
1005
|
+
},
|
|
971
1006
|
"ttl": {
|
|
972
1007
|
"name": "ttl",
|
|
973
1008
|
"required": true,
|
|
@@ -978,6 +1013,21 @@
|
|
|
978
1013
|
"required": true,
|
|
979
1014
|
"type": "string"
|
|
980
1015
|
},
|
|
1016
|
+
"vx": {
|
|
1017
|
+
"name": "vx",
|
|
1018
|
+
"required": false,
|
|
1019
|
+
"type": "number"
|
|
1020
|
+
},
|
|
1021
|
+
"vy": {
|
|
1022
|
+
"name": "vy",
|
|
1023
|
+
"required": false,
|
|
1024
|
+
"type": "number"
|
|
1025
|
+
},
|
|
1026
|
+
"vz": {
|
|
1027
|
+
"name": "vz",
|
|
1028
|
+
"required": false,
|
|
1029
|
+
"type": "number"
|
|
1030
|
+
},
|
|
981
1031
|
"x": {
|
|
982
1032
|
"name": "x",
|
|
983
1033
|
"required": true,
|
|
@@ -1988,6 +2038,108 @@
|
|
|
1988
2038
|
"tier": "presentation",
|
|
1989
2039
|
"type": "[Feature]"
|
|
1990
2040
|
},
|
|
2041
|
+
"fxPresets": {
|
|
2042
|
+
"default": [
|
|
2043
|
+
{
|
|
2044
|
+
"color": "#fbbf24",
|
|
2045
|
+
"color2": "#fde68a",
|
|
2046
|
+
"count": 6.0,
|
|
2047
|
+
"glow": 0.1,
|
|
2048
|
+
"shape": "spark",
|
|
2049
|
+
"size": 0.45,
|
|
2050
|
+
"type": "score",
|
|
2051
|
+
"vy": -0.3
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
"color": "#ef4444",
|
|
2055
|
+
"color2": "#450a0a",
|
|
2056
|
+
"count": 4.0,
|
|
2057
|
+
"gravity": 0.3,
|
|
2058
|
+
"shape": "puff",
|
|
2059
|
+
"size": 0.5,
|
|
2060
|
+
"type": "damage"
|
|
2061
|
+
}
|
|
2062
|
+
],
|
|
2063
|
+
"description": "This board's effect vocabulary — one look/recipe row per fx type its mechanics emit; unknown types fall back to a neutral spark.",
|
|
2064
|
+
"items": {
|
|
2065
|
+
"properties": {
|
|
2066
|
+
"color": {
|
|
2067
|
+
"name": "color",
|
|
2068
|
+
"required": false,
|
|
2069
|
+
"type": "string"
|
|
2070
|
+
},
|
|
2071
|
+
"color2": {
|
|
2072
|
+
"name": "color2",
|
|
2073
|
+
"required": false,
|
|
2074
|
+
"type": "string"
|
|
2075
|
+
},
|
|
2076
|
+
"count": {
|
|
2077
|
+
"name": "count",
|
|
2078
|
+
"required": false,
|
|
2079
|
+
"type": "number"
|
|
2080
|
+
},
|
|
2081
|
+
"effect": {
|
|
2082
|
+
"name": "effect",
|
|
2083
|
+
"required": false,
|
|
2084
|
+
"type": "string"
|
|
2085
|
+
},
|
|
2086
|
+
"glow": {
|
|
2087
|
+
"name": "glow",
|
|
2088
|
+
"required": false,
|
|
2089
|
+
"type": "number"
|
|
2090
|
+
},
|
|
2091
|
+
"gravity": {
|
|
2092
|
+
"name": "gravity",
|
|
2093
|
+
"required": false,
|
|
2094
|
+
"type": "number"
|
|
2095
|
+
},
|
|
2096
|
+
"particleCount": {
|
|
2097
|
+
"name": "particleCount",
|
|
2098
|
+
"required": false,
|
|
2099
|
+
"type": "number"
|
|
2100
|
+
},
|
|
2101
|
+
"shape": {
|
|
2102
|
+
"name": "shape",
|
|
2103
|
+
"required": false,
|
|
2104
|
+
"type": "string"
|
|
2105
|
+
},
|
|
2106
|
+
"size": {
|
|
2107
|
+
"name": "size",
|
|
2108
|
+
"required": false,
|
|
2109
|
+
"type": "number"
|
|
2110
|
+
},
|
|
2111
|
+
"space": {
|
|
2112
|
+
"name": "space",
|
|
2113
|
+
"required": false,
|
|
2114
|
+
"type": "string"
|
|
2115
|
+
},
|
|
2116
|
+
"type": {
|
|
2117
|
+
"name": "type",
|
|
2118
|
+
"required": true,
|
|
2119
|
+
"type": "string"
|
|
2120
|
+
},
|
|
2121
|
+
"vx": {
|
|
2122
|
+
"name": "vx",
|
|
2123
|
+
"required": false,
|
|
2124
|
+
"type": "number"
|
|
2125
|
+
},
|
|
2126
|
+
"vy": {
|
|
2127
|
+
"name": "vy",
|
|
2128
|
+
"required": false,
|
|
2129
|
+
"type": "number"
|
|
2130
|
+
},
|
|
2131
|
+
"vz": {
|
|
2132
|
+
"name": "vz",
|
|
2133
|
+
"required": false,
|
|
2134
|
+
"type": "number"
|
|
2135
|
+
}
|
|
2136
|
+
},
|
|
2137
|
+
"type": "object"
|
|
2138
|
+
},
|
|
2139
|
+
"label": "Fx Presets",
|
|
2140
|
+
"tier": "presentation",
|
|
2141
|
+
"type": "[FxPreset]"
|
|
2142
|
+
},
|
|
1991
2143
|
"goalText": {
|
|
1992
2144
|
"default": "Serve customers before their patience runs out",
|
|
1993
2145
|
"description": "HUD goal description.",
|
|
@@ -2828,41 +2980,10 @@
|
|
|
2828
2980
|
"type": "draw-text-layer"
|
|
2829
2981
|
},
|
|
2830
2982
|
{
|
|
2831
|
-
"items":
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
"fn",
|
|
2836
|
-
"f",
|
|
2837
|
-
{
|
|
2838
|
-
"color": "#ffe066",
|
|
2839
|
-
"position": {
|
|
2840
|
-
"x": [
|
|
2841
|
-
"object/get",
|
|
2842
|
-
"@f",
|
|
2843
|
-
"x"
|
|
2844
|
-
],
|
|
2845
|
-
"y": [
|
|
2846
|
-
"object/get",
|
|
2847
|
-
"@f",
|
|
2848
|
-
"y"
|
|
2849
|
-
],
|
|
2850
|
-
"z": [
|
|
2851
|
-
"object/get",
|
|
2852
|
-
"@f",
|
|
2853
|
-
"z"
|
|
2854
|
-
]
|
|
2855
|
-
},
|
|
2856
|
-
"text": [
|
|
2857
|
-
"object/get",
|
|
2858
|
-
"@f",
|
|
2859
|
-
"message"
|
|
2860
|
-
],
|
|
2861
|
-
"type": "draw-text"
|
|
2862
|
-
}
|
|
2863
|
-
]
|
|
2864
|
-
],
|
|
2865
|
-
"type": "draw-text-layer"
|
|
2983
|
+
"items": "@entity.fx",
|
|
2984
|
+
"presets": "@config.fxPresets",
|
|
2985
|
+
"tickMs": 500.0,
|
|
2986
|
+
"type": "draw-fx-layer"
|
|
2866
2987
|
}
|
|
2867
2988
|
],
|
|
2868
2989
|
"mode": "3d",
|
|
@@ -3993,41 +4114,10 @@
|
|
|
3993
4114
|
"type": "draw-text-layer"
|
|
3994
4115
|
},
|
|
3995
4116
|
{
|
|
3996
|
-
"items":
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
"fn",
|
|
4001
|
-
"f",
|
|
4002
|
-
{
|
|
4003
|
-
"color": "#ffe066",
|
|
4004
|
-
"position": {
|
|
4005
|
-
"x": [
|
|
4006
|
-
"object/get",
|
|
4007
|
-
"@f",
|
|
4008
|
-
"x"
|
|
4009
|
-
],
|
|
4010
|
-
"y": [
|
|
4011
|
-
"object/get",
|
|
4012
|
-
"@f",
|
|
4013
|
-
"y"
|
|
4014
|
-
],
|
|
4015
|
-
"z": [
|
|
4016
|
-
"object/get",
|
|
4017
|
-
"@f",
|
|
4018
|
-
"z"
|
|
4019
|
-
]
|
|
4020
|
-
},
|
|
4021
|
-
"text": [
|
|
4022
|
-
"object/get",
|
|
4023
|
-
"@f",
|
|
4024
|
-
"message"
|
|
4025
|
-
],
|
|
4026
|
-
"type": "draw-text"
|
|
4027
|
-
}
|
|
4028
|
-
]
|
|
4029
|
-
],
|
|
4030
|
-
"type": "draw-text-layer"
|
|
4117
|
+
"items": "@entity.fx",
|
|
4118
|
+
"presets": "@config.fxPresets",
|
|
4119
|
+
"tickMs": 500.0,
|
|
4120
|
+
"type": "draw-fx-layer"
|
|
4031
4121
|
}
|
|
4032
4122
|
],
|
|
4033
4123
|
"mode": "3d",
|