@almadar/std 16.153.0 → 16.155.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.
Files changed (93) hide show
  1. package/behaviors/lolo/ui/game/molecules/std-crew-board-2d.lolo +4 -4
  2. package/behaviors/lolo/ui/game/molecules/std-dungeon-board-2d.lolo +6 -6
  3. package/behaviors/lolo/ui/game/molecules/std-tactics-board-2d.lolo +74 -28
  4. package/behaviors/lolo/ui/game/molecules/std-worldmap-board-2d.lolo +2 -2
  5. package/behaviors/lolo/ui/game/molecules/ui-canvas.lolo +5 -0
  6. package/behaviors/lolo/ui/game/organisms/ui-arena-board.lolo +2 -2
  7. package/behaviors/lolo/ui/game/organisms/ui-battle-board.lolo +159 -8
  8. package/behaviors/lolo/ui/game/organisms/ui-builder-board.lolo +5 -20
  9. package/behaviors/lolo/ui/game/organisms/ui-card-battler-board.lolo +2 -0
  10. package/behaviors/lolo/ui/game/organisms/ui-castle-board.lolo +3 -3
  11. package/behaviors/lolo/ui/game/organisms/ui-city-builder-board.lolo +9 -7
  12. package/behaviors/lolo/ui/game/organisms/ui-grid-tactics-demo-board.lolo +2 -2
  13. package/behaviors/lolo/ui/game/organisms/ui-hex-strategy-board.lolo +158 -10
  14. package/behaviors/lolo/ui/game/organisms/ui-holiday-runner-board.lolo +1 -1
  15. package/behaviors/lolo/ui/game/organisms/ui-minigolf-board.lolo +22 -22
  16. package/behaviors/lolo/ui/game/organisms/ui-pinball-board.lolo +7 -7
  17. package/behaviors/lolo/ui/game/organisms/ui-pirate-board.lolo +14 -14
  18. package/behaviors/lolo/ui/game/organisms/ui-platformer-board.lolo +4 -0
  19. package/behaviors/lolo/ui/game/organisms/ui-sports-board.lolo +10 -7
  20. package/behaviors/lolo/ui/game/organisms/ui-tactics-demo-2d.lolo +135 -9
  21. package/behaviors/lolo/ui/game/organisms/ui-tanks-board.lolo +152 -8
  22. package/behaviors/lolo/ui/game/organisms/ui-topdown-rts-board.lolo +293 -17
  23. package/behaviors/lolo/ui/game/organisms/ui-tower-defense-board.lolo +8 -8
  24. package/behaviors/lolo/ui/game/organisms/ui-uncontrolled-battle-board.lolo +5 -5
  25. package/behaviors/lolo/ui/game/organisms/ui-world-map-board.lolo +3 -3
  26. package/behaviors/registry/factory-signatures.json +1893 -2294
  27. package/behaviors/registry/ui/game/molecules/std-crew-board-2d.orb +10 -12
  28. package/behaviors/registry/ui/game/molecules/std-dungeon-board-2d.orb +15 -18
  29. package/behaviors/registry/ui/game/molecules/std-tactics-board-2d.orb +1726 -395
  30. package/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +7 -60
  31. package/behaviors/registry/ui/game/molecules/ui-canvas.orb +7 -0
  32. package/behaviors/registry/ui/game/organisms/ui-arena-board.orb +5 -6
  33. package/behaviors/registry/ui/game/organisms/ui-battle-board.orb +103 -100
  34. package/behaviors/registry/ui/game/organisms/ui-builder-board.orb +21 -226
  35. package/behaviors/registry/ui/game/organisms/ui-card-battler-board.orb +42 -0
  36. package/behaviors/registry/ui/game/organisms/ui-castle-board.orb +30 -9
  37. package/behaviors/registry/ui/game/organisms/ui-city-builder-board.orb +49 -0
  38. package/behaviors/registry/ui/game/organisms/ui-grid-tactics-demo-board.orb +5 -6
  39. package/behaviors/registry/ui/game/organisms/ui-hex-strategy-board.orb +95 -1187
  40. package/behaviors/registry/ui/game/organisms/ui-holiday-runner-board.orb +2 -3
  41. package/behaviors/registry/ui/game/organisms/ui-minigolf-board.orb +55 -11
  42. package/behaviors/registry/ui/game/organisms/ui-pinball-board.orb +8 -8
  43. package/behaviors/registry/ui/game/organisms/ui-pirate-board.orb +14 -0
  44. package/behaviors/registry/ui/game/organisms/ui-platformer-board.orb +72 -0
  45. package/behaviors/registry/ui/game/organisms/ui-sports-board.orb +60 -0
  46. package/behaviors/registry/ui/game/organisms/ui-tactics-demo-2d.orb +222 -332
  47. package/behaviors/registry/ui/game/organisms/ui-tanks-board.orb +127 -95
  48. package/behaviors/registry/ui/game/organisms/ui-topdown-rts-board.orb +1501 -264
  49. package/behaviors/registry/ui/game/organisms/ui-tower-defense-board.orb +8 -0
  50. package/behaviors/registry/ui/game/organisms/ui-uncontrolled-battle-board.orb +5 -0
  51. package/behaviors/registry/ui/game/organisms/ui-world-map-board.orb +8 -12
  52. package/dist/behaviors/behaviors-embeddings.json +244 -236
  53. package/dist/behaviors/behaviors-registry.json +193 -812
  54. package/dist/behaviors/exports-reader.js +1099 -2090
  55. package/dist/behaviors/functions/index.d.ts +33 -26
  56. package/dist/behaviors/functions/index.js +1099 -2091
  57. package/dist/behaviors/index.d.ts +1 -1
  58. package/dist/behaviors/index.js +1100 -2091
  59. package/dist/behaviors/knob-embeddings.json +1 -1
  60. package/dist/behaviors/query.js +1099 -2090
  61. package/dist/behaviors/registry/factory-signatures.json +1893 -2294
  62. package/dist/behaviors/registry/ui/game/molecules/std-crew-board-2d.orb +10 -12
  63. package/dist/behaviors/registry/ui/game/molecules/std-dungeon-board-2d.orb +15 -18
  64. package/dist/behaviors/registry/ui/game/molecules/std-tactics-board-2d.orb +1726 -395
  65. package/dist/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +7 -60
  66. package/dist/behaviors/registry/ui/game/molecules/ui-canvas.orb +7 -0
  67. package/dist/behaviors/registry/ui/game/organisms/ui-arena-board.orb +5 -6
  68. package/dist/behaviors/registry/ui/game/organisms/ui-battle-board.orb +103 -100
  69. package/dist/behaviors/registry/ui/game/organisms/ui-builder-board.orb +21 -226
  70. package/dist/behaviors/registry/ui/game/organisms/ui-card-battler-board.orb +42 -0
  71. package/dist/behaviors/registry/ui/game/organisms/ui-castle-board.orb +30 -9
  72. package/dist/behaviors/registry/ui/game/organisms/ui-city-builder-board.orb +49 -0
  73. package/dist/behaviors/registry/ui/game/organisms/ui-grid-tactics-demo-board.orb +5 -6
  74. package/dist/behaviors/registry/ui/game/organisms/ui-hex-strategy-board.orb +95 -1187
  75. package/dist/behaviors/registry/ui/game/organisms/ui-holiday-runner-board.orb +2 -3
  76. package/dist/behaviors/registry/ui/game/organisms/ui-minigolf-board.orb +55 -11
  77. package/dist/behaviors/registry/ui/game/organisms/ui-pinball-board.orb +8 -8
  78. package/dist/behaviors/registry/ui/game/organisms/ui-pirate-board.orb +14 -0
  79. package/dist/behaviors/registry/ui/game/organisms/ui-platformer-board.orb +72 -0
  80. package/dist/behaviors/registry/ui/game/organisms/ui-sports-board.orb +60 -0
  81. package/dist/behaviors/registry/ui/game/organisms/ui-tactics-demo-2d.orb +222 -332
  82. package/dist/behaviors/registry/ui/game/organisms/ui-tanks-board.orb +127 -95
  83. package/dist/behaviors/registry/ui/game/organisms/ui-topdown-rts-board.orb +1501 -264
  84. package/dist/behaviors/registry/ui/game/organisms/ui-tower-defense-board.orb +8 -0
  85. package/dist/behaviors/registry/ui/game/organisms/ui-uncontrolled-battle-board.orb +5 -0
  86. package/dist/behaviors/registry/ui/game/organisms/ui-world-map-board.orb +8 -12
  87. package/dist/behaviors-embeddings.json +244 -236
  88. package/dist/behaviors-registry.json +193 -812
  89. package/dist/index.d.ts +1 -1
  90. package/dist/index.js +1100 -2091
  91. package/dist/knob-embeddings.json +1 -1
  92. package/dist/registry/factory-signatures.json +1893 -2294
  93. package/package.json +2 -2
@@ -10,15 +10,6 @@
10
10
  "owner": "workspace",
11
11
  "renames": []
12
12
  },
13
- "evt_01KXG04WSJ1QXFF4Y4YJASB7DM": {
14
- "bakedName": "START",
15
- "curName": "START",
16
- "id": "evt_01KXG04WSJ1QXFF4Y4YJASB7DM",
17
- "kind": "event",
18
- "owner": "workspace",
19
- "parent": "trt_01KXG04WSJK7538267REVQZCW0",
20
- "renames": []
21
- },
22
13
  "evt_01KXG04WSN2BYA1K6M5W112QH3": {
23
14
  "bakedName": "INIT",
24
15
  "curName": "INIT",
@@ -791,11 +782,6 @@
791
782
  "scope": "instance",
792
783
  "stateMachine": {
793
784
  "events": [
794
- {
795
- "id": "evt_01KXG04WSJ1QXFF4Y4YJASB7DM",
796
- "key": "START",
797
- "name": "Start"
798
- },
799
785
  {
800
786
  "id": "evt_01KXG04WSN2BYA1K6M5W112QH3",
801
787
  "key": "INIT",
@@ -871,9 +857,6 @@
871
857
  "isInitial": true,
872
858
  "name": "playing"
873
859
  },
874
- {
875
- "name": "menu"
876
- },
877
860
  {
878
861
  "name": "complete"
879
862
  }
@@ -1082,214 +1065,6 @@
1082
1065
  }
1083
1066
  ]
1084
1067
  ],
1085
- "event": "START",
1086
- "eventId": "evt_01KXG04WSJ1QXFF4Y4YJASB7DM",
1087
- "from": "menu",
1088
- "to": "playing"
1089
- },
1090
- {
1091
- "effects": [
1092
- [
1093
- "set",
1094
- "@entity.components",
1095
- "@config.components"
1096
- ],
1097
- [
1098
- "set",
1099
- "@entity.slots",
1100
- [
1101
- "array/map",
1102
- "@config.slots",
1103
- [
1104
- "fn",
1105
- "s",
1106
- [
1107
- "object/merge",
1108
- "@s",
1109
- {
1110
- "options": [
1111
- "array/map",
1112
- "@config.components",
1113
- [
1114
- "fn",
1115
- "c",
1116
- {
1117
- "componentId": [
1118
- "object/get",
1119
- "@c",
1120
- "id"
1121
- ],
1122
- "iconUrl": [
1123
- "object/get",
1124
- "@c",
1125
- "iconUrl"
1126
- ],
1127
- "label": [
1128
- "object/get",
1129
- "@c",
1130
- "label"
1131
- ],
1132
- "slotId": [
1133
- "object/get",
1134
- "@s",
1135
- "id"
1136
- ]
1137
- }
1138
- ]
1139
- ]
1140
- }
1141
- ]
1142
- ]
1143
- ]
1144
- ],
1145
- [
1146
- "set",
1147
- "@entity.title",
1148
- "@config.title"
1149
- ],
1150
- [
1151
- "set",
1152
- "@entity.description",
1153
- "@config.description"
1154
- ],
1155
- [
1156
- "set",
1157
- "@entity.hint",
1158
- "@config.hint"
1159
- ],
1160
- [
1161
- "set",
1162
- "@entity.attempts",
1163
- 0.0
1164
- ],
1165
- [
1166
- "set",
1167
- "@entity.result",
1168
- "none"
1169
- ],
1170
- [
1171
- "render-ui",
1172
- "main",
1173
- {
1174
- "children": [
1175
- {
1176
- "children": [
1177
- {
1178
- "content": "@entity.title",
1179
- "type": "typography",
1180
- "variant": "h4"
1181
- },
1182
- {
1183
- "content": "@entity.description",
1184
- "type": "typography",
1185
- "variant": "body"
1186
- }
1187
- ],
1188
- "type": "card"
1189
- },
1190
- {
1191
- "children": [
1192
- {
1193
- "entity": "@entity.slots",
1194
- "fields": [],
1195
- "gap": "sm",
1196
- "renderItem": [
1197
- "fn",
1198
- "s",
1199
- {
1200
- "children": [
1201
- {
1202
- "children": [
1203
- {
1204
- "content": "@s.id",
1205
- "type": "typography",
1206
- "variant": "label"
1207
- },
1208
- {
1209
- "label": "@s.placedComponentId",
1210
- "type": "badge"
1211
- }
1212
- ],
1213
- "direction": "horizontal",
1214
- "gap": "sm",
1215
- "justify": "between",
1216
- "type": "stack"
1217
- },
1218
- {
1219
- "entity": "@s.options",
1220
- "fields": [],
1221
- "gap": "sm",
1222
- "renderItem": [
1223
- "fn",
1224
- "opt",
1225
- {
1226
- "action": "PLACE",
1227
- "actionPayload": {
1228
- "componentId": "@opt.componentId",
1229
- "slotId": "@opt.slotId"
1230
- },
1231
- "iconAsset": "@opt.iconUrl",
1232
- "label": "@opt.label",
1233
- "type": "button",
1234
- "variant": "primary"
1235
- }
1236
- ],
1237
- "type": "data-list"
1238
- }
1239
- ],
1240
- "type": "card"
1241
- }
1242
- ],
1243
- "type": "data-list"
1244
- }
1245
- ],
1246
- "type": "card"
1247
- }
1248
- ],
1249
- "hud": {
1250
- "children": [
1251
- {
1252
- "stats": [
1253
- {
1254
- "label": "Attempts",
1255
- "value": "@entity.attempts"
1256
- },
1257
- {
1258
- "label": "Status",
1259
- "value": "@entity.result"
1260
- }
1261
- ],
1262
- "type": "game-hud"
1263
- },
1264
- {
1265
- "children": [
1266
- {
1267
- "action": "CHECK",
1268
- "label": "Check",
1269
- "type": "button",
1270
- "variant": "primary"
1271
- },
1272
- {
1273
- "action": "PLAY_AGAIN",
1274
- "label": "Reset",
1275
- "type": "button",
1276
- "variant": "secondary"
1277
- }
1278
- ],
1279
- "direction": "horizontal",
1280
- "gap": "sm",
1281
- "type": "stack"
1282
- }
1283
- ],
1284
- "direction": "horizontal",
1285
- "gap": "md",
1286
- "justify": "between",
1287
- "type": "stack"
1288
- },
1289
- "type": "game-shell"
1290
- }
1291
- ]
1292
- ],
1293
1068
  "event": "INIT",
1294
1069
  "eventId": "evt_01KXG04WSN2BYA1K6M5W112QH3",
1295
1070
  "from": "playing",
@@ -1794,6 +1569,11 @@
1794
1569
  },
1795
1570
  {
1796
1571
  "effects": [
1572
+ [
1573
+ "set",
1574
+ "@entity.components",
1575
+ "@config.components"
1576
+ ],
1797
1577
  [
1798
1578
  "set",
1799
1579
  "@entity.slots",
@@ -1842,6 +1622,21 @@
1842
1622
  ]
1843
1623
  ]
1844
1624
  ],
1625
+ [
1626
+ "set",
1627
+ "@entity.title",
1628
+ "@config.title"
1629
+ ],
1630
+ [
1631
+ "set",
1632
+ "@entity.description",
1633
+ "@config.description"
1634
+ ],
1635
+ [
1636
+ "set",
1637
+ "@entity.hint",
1638
+ "@config.hint"
1639
+ ],
1845
1640
  [
1846
1641
  "set",
1847
1642
  "@entity.attempts",
@@ -1978,7 +1773,7 @@
1978
1773
  "event": "PLAY_AGAIN",
1979
1774
  "eventId": "evt_01KXG04WSNARM64TKS94ZYP954",
1980
1775
  "from": "complete",
1981
- "to": "menu"
1776
+ "to": "playing"
1982
1777
  }
1983
1778
  ]
1984
1779
  }
@@ -2099,6 +2099,22 @@
2099
2099
  "@entity.result"
2100
2100
  ]
2101
2101
  ],
2102
+ [
2103
+ "if",
2104
+ [
2105
+ "!=",
2106
+ "@entity.result",
2107
+ "none"
2108
+ ],
2109
+ [
2110
+ "emit",
2111
+ "GAME_END",
2112
+ {
2113
+ "result": "@entity.result"
2114
+ }
2115
+ ],
2116
+ null
2117
+ ],
2102
2118
  [
2103
2119
  "render-ui",
2104
2120
  "main",
@@ -2559,6 +2575,32 @@
2559
2575
  "justify": "between",
2560
2576
  "type": "stack"
2561
2577
  },
2578
+ "overlay": {
2579
+ "options": [
2580
+ {
2581
+ "event": "PLAY_AGAIN",
2582
+ "id": "again",
2583
+ "label": "Play Again",
2584
+ "variant": "primary"
2585
+ }
2586
+ ],
2587
+ "subtitle": [
2588
+ "str/concat",
2589
+ "Result: ",
2590
+ "@entity.result"
2591
+ ],
2592
+ "title": [
2593
+ "if",
2594
+ [
2595
+ "==",
2596
+ "@entity.result",
2597
+ "won"
2598
+ ],
2599
+ "VICTORY!",
2600
+ "DEFEAT"
2601
+ ],
2602
+ "type": "game-menu"
2603
+ },
2562
2604
  "type": "game-shell"
2563
2605
  }
2564
2606
  ]
@@ -9535,9 +9535,17 @@
9535
9535
  "eventId": "evt_01KXG04WYVZ6D7S7BVHPFGDR2J",
9536
9536
  "from": "idle",
9537
9537
  "guard": [
9538
- ">=",
9539
- "@entity.wave",
9540
- 3.0
9538
+ "and",
9539
+ [
9540
+ ">=",
9541
+ "@entity.wave",
9542
+ 3.0
9543
+ ],
9544
+ [
9545
+ ">",
9546
+ "@entity.health",
9547
+ 0.0
9548
+ ]
9541
9549
  ],
9542
9550
  "to": "victory"
9543
9551
  },
@@ -12686,7 +12694,11 @@
12686
12694
  0.0,
12687
12695
  [
12688
12696
  "-",
12689
- "@entity.wave",
12697
+ [
12698
+ "*",
12699
+ "@entity.wave",
12700
+ 4.0
12701
+ ],
12690
12702
  [
12691
12703
  "array/len",
12692
12704
  "@entity.buildings"
@@ -13325,11 +13337,20 @@
13325
13337
  }
13326
13338
  ],
13327
13339
  [
13328
- "emit",
13329
- "WAVE_DEFEATED",
13330
- {
13331
- "wave": "@entity.wave"
13332
- }
13340
+ "if",
13341
+ [
13342
+ ">",
13343
+ "@entity.health",
13344
+ 0.0
13345
+ ],
13346
+ [
13347
+ "emit",
13348
+ "WAVE_DEFEATED",
13349
+ {
13350
+ "wave": "@entity.wave"
13351
+ }
13352
+ ],
13353
+ null
13333
13354
  ]
13334
13355
  ],
13335
13356
  "guard": [
@@ -5608,6 +5608,7 @@
5608
5608
  "type": "draw-sprite-layer"
5609
5609
  }
5610
5610
  ],
5611
+ "fit": true,
5611
5612
  "projection": "isometric",
5612
5613
  "showMinimap": true,
5613
5614
  "tileClickEvent": "PLACE_BUILDING",
@@ -5993,6 +5994,7 @@
5993
5994
  "type": "draw-sprite-layer"
5994
5995
  }
5995
5996
  ],
5997
+ "fit": true,
5996
5998
  "projection": "isometric",
5997
5999
  "showMinimap": true,
5998
6000
  "tileClickEvent": "PLACE_BUILDING",
@@ -6229,6 +6231,22 @@
6229
6231
  "@entity.result"
6230
6232
  ]
6231
6233
  ],
6234
+ [
6235
+ "if",
6236
+ [
6237
+ "!=",
6238
+ "@entity.result",
6239
+ "none"
6240
+ ],
6241
+ [
6242
+ "emit",
6243
+ "GAME_END",
6244
+ {
6245
+ "result": "@entity.result"
6246
+ }
6247
+ ],
6248
+ null
6249
+ ],
6232
6250
  [
6233
6251
  "set",
6234
6252
  "@entity.selectedUnitId",
@@ -6471,6 +6489,7 @@
6471
6489
  "type": "draw-sprite-layer"
6472
6490
  }
6473
6491
  ],
6492
+ "fit": true,
6474
6493
  "projection": "isometric",
6475
6494
  "showMinimap": true,
6476
6495
  "tileClickEvent": "PLACE_BUILDING",
@@ -6981,6 +7000,7 @@
6981
7000
  "type": "draw-sprite-layer"
6982
7001
  }
6983
7002
  ],
7003
+ "fit": true,
6984
7004
  "projection": "isometric",
6985
7005
  "showMinimap": true,
6986
7006
  "tileClickEvent": "PLACE_BUILDING",
@@ -7118,6 +7138,32 @@
7118
7138
  "url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-ui-pack/ui/greySheet.png",
7119
7139
  "variant": ""
7120
7140
  },
7141
+ "overlay": {
7142
+ "options": [
7143
+ {
7144
+ "event": "PLAY_AGAIN",
7145
+ "id": "again",
7146
+ "label": "Play Again",
7147
+ "variant": "primary"
7148
+ }
7149
+ ],
7150
+ "subtitle": [
7151
+ "str/concat",
7152
+ "Population: ",
7153
+ "@entity.population"
7154
+ ],
7155
+ "title": [
7156
+ "if",
7157
+ [
7158
+ "==",
7159
+ "@entity.result",
7160
+ "won"
7161
+ ],
7162
+ "CITY COMPLETE!",
7163
+ "GAME OVER"
7164
+ ],
7165
+ "type": "game-menu"
7166
+ },
7121
7167
  "type": "game-shell"
7122
7168
  }
7123
7169
  ]
@@ -7429,6 +7475,7 @@
7429
7475
  "type": "draw-sprite-layer"
7430
7476
  }
7431
7477
  ],
7478
+ "fit": true,
7432
7479
  "projection": "isometric",
7433
7480
  "showMinimap": true,
7434
7481
  "tileClickEvent": "PLACE_BUILDING",
@@ -7886,6 +7933,7 @@
7886
7933
  "type": "draw-sprite-layer"
7887
7934
  }
7888
7935
  ],
7936
+ "fit": true,
7889
7937
  "projection": "isometric",
7890
7938
  "showMinimap": true,
7891
7939
  "tileClickEvent": "PLACE_BUILDING",
@@ -8431,6 +8479,7 @@
8431
8479
  "type": "draw-sprite-layer"
8432
8480
  }
8433
8481
  ],
8482
+ "fit": true,
8434
8483
  "projection": "isometric",
8435
8484
  "showMinimap": true,
8436
8485
  "tileClickEvent": "PLACE_BUILDING",
@@ -443,8 +443,7 @@
443
443
  "linkedEntity": "GameState",
444
444
  "linkedEntityId": "ent_01KXG04XJQ7RG55JMP44YA5BDE",
445
445
  "name": "TacticsAuthority",
446
- "ref": "Tactics.traits.GridTactics",
447
- "refId": "trt_01KXG04THREP6VTN7SEQ5QND02"
446
+ "ref": "Tactics.traits.GridTactics"
448
447
  },
449
448
  {
450
449
  "config": {
@@ -457,8 +456,7 @@
457
456
  "linkedEntity": "GameState",
458
457
  "linkedEntityId": "ent_01KXG04XJQ7RG55JMP44YA5BDE",
459
458
  "name": "FxDecay",
460
- "ref": "Particles.traits.FxParticles",
461
- "refId": "trt_01KXG04TFZQZVT3F7J3DTM2PXF"
459
+ "ref": "Particles.traits.FxParticles"
462
460
  },
463
461
  {
464
462
  "config": {
@@ -471,8 +469,7 @@
471
469
  "linkedEntity": "GameState",
472
470
  "linkedEntityId": "ent_01KXG04XJQ7RG55JMP44YA5BDE",
473
471
  "name": "RoundLogic",
474
- "ref": "Round.traits.RoundFlow",
475
- "refId": "trt_01KXG04TNCJQBQBHH17BMMRPXT"
472
+ "ref": "Round.traits.RoundFlow"
476
473
  },
477
474
  {
478
475
  "category": "interaction",
@@ -1003,6 +1000,7 @@
1003
1000
  "type": "draw-text-layer"
1004
1001
  }
1005
1002
  ],
1003
+ "fit": true,
1006
1004
  "projection": "flat",
1007
1005
  "showMinimap": false,
1008
1006
  "tileClickEvent": "TILE_CLICK",
@@ -1750,6 +1748,7 @@
1750
1748
  "type": "draw-text-layer"
1751
1749
  }
1752
1750
  ],
1751
+ "fit": true,
1753
1752
  "projection": "flat",
1754
1753
  "showMinimap": false,
1755
1754
  "tileClickEvent": "TILE_CLICK",