@almadar/std 16.151.0 → 16.153.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 (151) hide show
  1. package/behaviors/lolo/infra/atoms/std-data-erasure.lolo +5 -1
  2. package/behaviors/lolo/ui/core/atoms/std-browse.lolo +15 -4
  3. package/behaviors/lolo/ui/core/molecules/ui-data-list.lolo +12 -0
  4. package/behaviors/lolo/ui/core/molecules/ui-emoji-picker.lolo +56 -0
  5. package/behaviors/lolo/ui/core/molecules/ui-popover.lolo +39 -0
  6. package/behaviors/lolo/ui/core/molecules/ui-table-view.lolo +11 -0
  7. package/behaviors/lolo/ui/game/atoms/ui-draw-group.lolo +54 -0
  8. package/behaviors/lolo/ui/game/atoms/ui-draw-shape.lolo +6 -1
  9. package/behaviors/lolo/ui/game/atoms/ui-draw-sprite.lolo +2 -2
  10. package/behaviors/lolo/ui/game/atoms/ui-svg-draw-group.lolo +58 -0
  11. package/behaviors/lolo/ui/game/atoms/ui-svg-draw-shape.lolo +103 -0
  12. package/behaviors/lolo/ui/game/atoms/ui-svg-draw-text.lolo +58 -0
  13. package/behaviors/lolo/ui/game/molecules/ui-canvas-2d.lolo +11 -1
  14. package/behaviors/lolo/ui/game/molecules/ui-canvas.lolo +10 -0
  15. package/behaviors/lolo/ui/game/molecules/ui-draw-shape-layer.lolo +3 -2
  16. package/behaviors/lolo/ui/game/molecules/ui-svg-draw-shape-layer.lolo +52 -0
  17. package/behaviors/lolo/ui/game/molecules/ui-svg-stage.lolo +98 -0
  18. package/behaviors/lolo/ui/game/organisms/ui-fishing-board.lolo +8 -8
  19. package/behaviors/lolo/ui/game/organisms/ui-physics-sandbox-board.lolo +5 -5
  20. package/behaviors/lolo/ui/game/organisms/ui-roguelike-board.lolo +5 -5
  21. package/behaviors/lolo/ui/game/organisms/ui-sokoban-board.lolo +5 -5
  22. package/behaviors/lolo/ui/game/organisms/ui-state-architect-board.lolo +4 -4
  23. package/behaviors/lolo/ui/game/organisms/ui-winter-ski-board.lolo +7 -7
  24. package/behaviors/registry/factory-signatures.json +6211 -2181
  25. package/behaviors/registry/infra/atoms/std-approval-gate.orb +16 -8
  26. package/behaviors/registry/infra/atoms/std-cache-aside.orb +62 -31
  27. package/behaviors/registry/infra/atoms/std-circuit-breaker.orb +32 -16
  28. package/behaviors/registry/infra/atoms/std-data-erasure.orb +17 -9
  29. package/behaviors/registry/infra/atoms/std-mod-queue.orb +16 -8
  30. package/behaviors/registry/infra/atoms/std-rate-limiter.orb +28 -14
  31. package/behaviors/registry/ml/molecules/std-escalating-decision.orb +10 -5
  32. package/behaviors/registry/ml/molecules/std-knowledge-tracing.orb +4 -2
  33. package/behaviors/registry/ui/core/atoms/std-billable-hour.orb +2 -1
  34. package/behaviors/registry/ui/core/atoms/std-browse.orb +108 -28
  35. package/behaviors/registry/ui/core/atoms/std-dashboard-grid-embedded.orb +2 -1
  36. package/behaviors/registry/ui/core/atoms/std-esign-flow.orb +4 -2
  37. package/behaviors/registry/ui/core/atoms/std-esign-request.orb +6 -3
  38. package/behaviors/registry/ui/core/atoms/std-gallery.orb +18 -9
  39. package/behaviors/registry/ui/core/atoms/std-import.orb +4 -2
  40. package/behaviors/registry/ui/core/molecules/ui-data-list.orb +21 -0
  41. package/behaviors/registry/ui/core/molecules/ui-emoji-picker.orb +214 -0
  42. package/behaviors/registry/ui/core/molecules/ui-popover.orb +112 -1
  43. package/behaviors/registry/ui/core/molecules/ui-table-view.orb +44 -0
  44. package/behaviors/registry/ui/game/atoms/std-arcade-flow.orb +1 -0
  45. package/behaviors/registry/ui/game/atoms/std-arcade-play.orb +1 -0
  46. package/behaviors/registry/ui/game/atoms/std-chase-ai.orb +1 -0
  47. package/behaviors/registry/ui/game/atoms/std-dungeon-combat.orb +1 -0
  48. package/behaviors/registry/ui/game/atoms/std-fx-particles.orb +1 -0
  49. package/behaviors/registry/ui/game/atoms/std-gather.orb +1 -0
  50. package/behaviors/registry/ui/game/atoms/std-gold.orb +1 -0
  51. package/behaviors/registry/ui/game/atoms/std-grid-tactics.orb +1 -0
  52. package/behaviors/registry/ui/game/atoms/std-hero-nav.orb +1 -0
  53. package/behaviors/registry/ui/game/atoms/std-market-flow.orb +1 -0
  54. package/behaviors/registry/ui/game/atoms/std-objective-flow.orb +1 -0
  55. package/behaviors/registry/ui/game/atoms/std-objective-reach.orb +1 -0
  56. package/behaviors/registry/ui/game/atoms/std-patience.orb +1 -0
  57. package/behaviors/registry/ui/game/atoms/std-production.orb +1 -0
  58. package/behaviors/registry/ui/game/atoms/std-round-flow.orb +1 -0
  59. package/behaviors/registry/ui/game/atoms/std-score.orb +1 -0
  60. package/behaviors/registry/ui/game/atoms/std-survival-flow.orb +1 -0
  61. package/behaviors/registry/ui/game/atoms/std-xp.orb +1 -0
  62. package/behaviors/registry/ui/game/atoms/ui-draw-group.orb +196 -0
  63. package/behaviors/registry/ui/game/atoms/ui-draw-shape.orb +9 -1
  64. package/behaviors/registry/ui/game/atoms/ui-draw-sprite.orb +2 -2
  65. package/behaviors/registry/ui/game/atoms/ui-svg-draw-group.orb +186 -0
  66. package/behaviors/registry/ui/game/atoms/ui-svg-draw-shape.orb +259 -0
  67. package/behaviors/registry/ui/game/atoms/ui-svg-draw-text.orb +195 -0
  68. package/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +6 -3
  69. package/behaviors/registry/ui/game/molecules/ui-canvas-2d.orb +16 -1
  70. package/behaviors/registry/ui/game/molecules/ui-canvas.orb +14 -0
  71. package/behaviors/registry/ui/game/molecules/ui-draw-shape-layer.orb +9 -1
  72. package/behaviors/registry/ui/game/molecules/ui-svg-draw-shape-layer.orb +188 -0
  73. package/behaviors/registry/ui/game/molecules/ui-svg-stage.orb +362 -0
  74. package/behaviors/registry/ui/game/organisms/ui-fishing-board.orb +16 -16
  75. package/behaviors/registry/ui/game/organisms/ui-physics-sandbox-board.orb +10 -10
  76. package/behaviors/registry/ui/game/organisms/ui-roguelike-board.orb +10 -10
  77. package/behaviors/registry/ui/game/organisms/ui-sokoban-board.orb +10 -10
  78. package/behaviors/registry/ui/game/organisms/ui-state-architect-board.orb +8 -8
  79. package/behaviors/registry/ui/game/organisms/ui-winter-ski-board.orb +14 -14
  80. package/dist/behaviors/behaviors-embeddings.json +371 -343
  81. package/dist/behaviors/behaviors-registry.json +4851 -2388
  82. package/dist/behaviors/exports-reader.js +3409 -3101
  83. package/dist/behaviors/functions/index.d.ts +609 -6
  84. package/dist/behaviors/functions/index.js +3389 -3102
  85. package/dist/behaviors/index.d.ts +1 -1
  86. package/dist/behaviors/index.js +3410 -3102
  87. package/dist/behaviors/knob-embeddings.json +1 -1
  88. package/dist/behaviors/query.js +3409 -3101
  89. package/dist/behaviors/registry/factory-signatures.json +6211 -2181
  90. package/dist/behaviors/registry/infra/atoms/std-approval-gate.orb +16 -8
  91. package/dist/behaviors/registry/infra/atoms/std-cache-aside.orb +62 -31
  92. package/dist/behaviors/registry/infra/atoms/std-circuit-breaker.orb +32 -16
  93. package/dist/behaviors/registry/infra/atoms/std-data-erasure.orb +17 -9
  94. package/dist/behaviors/registry/infra/atoms/std-mod-queue.orb +16 -8
  95. package/dist/behaviors/registry/infra/atoms/std-rate-limiter.orb +28 -14
  96. package/dist/behaviors/registry/ml/molecules/std-escalating-decision.orb +10 -5
  97. package/dist/behaviors/registry/ml/molecules/std-knowledge-tracing.orb +4 -2
  98. package/dist/behaviors/registry/ui/core/atoms/std-billable-hour.orb +2 -1
  99. package/dist/behaviors/registry/ui/core/atoms/std-browse.orb +108 -28
  100. package/dist/behaviors/registry/ui/core/atoms/std-dashboard-grid-embedded.orb +2 -1
  101. package/dist/behaviors/registry/ui/core/atoms/std-esign-flow.orb +4 -2
  102. package/dist/behaviors/registry/ui/core/atoms/std-esign-request.orb +6 -3
  103. package/dist/behaviors/registry/ui/core/atoms/std-gallery.orb +18 -9
  104. package/dist/behaviors/registry/ui/core/atoms/std-import.orb +4 -2
  105. package/dist/behaviors/registry/ui/core/molecules/ui-data-list.orb +21 -0
  106. package/dist/behaviors/registry/ui/core/molecules/ui-emoji-picker.orb +214 -0
  107. package/dist/behaviors/registry/ui/core/molecules/ui-popover.orb +112 -1
  108. package/dist/behaviors/registry/ui/core/molecules/ui-table-view.orb +44 -0
  109. package/dist/behaviors/registry/ui/game/atoms/std-arcade-flow.orb +1 -0
  110. package/dist/behaviors/registry/ui/game/atoms/std-arcade-play.orb +1 -0
  111. package/dist/behaviors/registry/ui/game/atoms/std-chase-ai.orb +1 -0
  112. package/dist/behaviors/registry/ui/game/atoms/std-dungeon-combat.orb +1 -0
  113. package/dist/behaviors/registry/ui/game/atoms/std-fx-particles.orb +1 -0
  114. package/dist/behaviors/registry/ui/game/atoms/std-gather.orb +1 -0
  115. package/dist/behaviors/registry/ui/game/atoms/std-gold.orb +1 -0
  116. package/dist/behaviors/registry/ui/game/atoms/std-grid-tactics.orb +1 -0
  117. package/dist/behaviors/registry/ui/game/atoms/std-hero-nav.orb +1 -0
  118. package/dist/behaviors/registry/ui/game/atoms/std-market-flow.orb +1 -0
  119. package/dist/behaviors/registry/ui/game/atoms/std-objective-flow.orb +1 -0
  120. package/dist/behaviors/registry/ui/game/atoms/std-objective-reach.orb +1 -0
  121. package/dist/behaviors/registry/ui/game/atoms/std-patience.orb +1 -0
  122. package/dist/behaviors/registry/ui/game/atoms/std-production.orb +1 -0
  123. package/dist/behaviors/registry/ui/game/atoms/std-round-flow.orb +1 -0
  124. package/dist/behaviors/registry/ui/game/atoms/std-score.orb +1 -0
  125. package/dist/behaviors/registry/ui/game/atoms/std-survival-flow.orb +1 -0
  126. package/dist/behaviors/registry/ui/game/atoms/std-xp.orb +1 -0
  127. package/dist/behaviors/registry/ui/game/atoms/ui-draw-group.orb +196 -0
  128. package/dist/behaviors/registry/ui/game/atoms/ui-draw-shape.orb +9 -1
  129. package/dist/behaviors/registry/ui/game/atoms/ui-draw-sprite.orb +2 -2
  130. package/dist/behaviors/registry/ui/game/atoms/ui-svg-draw-group.orb +186 -0
  131. package/dist/behaviors/registry/ui/game/atoms/ui-svg-draw-shape.orb +259 -0
  132. package/dist/behaviors/registry/ui/game/atoms/ui-svg-draw-text.orb +195 -0
  133. package/dist/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +6 -3
  134. package/dist/behaviors/registry/ui/game/molecules/ui-canvas-2d.orb +16 -1
  135. package/dist/behaviors/registry/ui/game/molecules/ui-canvas.orb +14 -0
  136. package/dist/behaviors/registry/ui/game/molecules/ui-draw-shape-layer.orb +9 -1
  137. package/dist/behaviors/registry/ui/game/molecules/ui-svg-draw-shape-layer.orb +188 -0
  138. package/dist/behaviors/registry/ui/game/molecules/ui-svg-stage.orb +362 -0
  139. package/dist/behaviors/registry/ui/game/organisms/ui-fishing-board.orb +16 -16
  140. package/dist/behaviors/registry/ui/game/organisms/ui-physics-sandbox-board.orb +10 -10
  141. package/dist/behaviors/registry/ui/game/organisms/ui-roguelike-board.orb +10 -10
  142. package/dist/behaviors/registry/ui/game/organisms/ui-sokoban-board.orb +10 -10
  143. package/dist/behaviors/registry/ui/game/organisms/ui-state-architect-board.orb +8 -8
  144. package/dist/behaviors/registry/ui/game/organisms/ui-winter-ski-board.orb +14 -14
  145. package/dist/behaviors-embeddings.json +371 -343
  146. package/dist/behaviors-registry.json +4851 -2388
  147. package/dist/index.d.ts +1 -1
  148. package/dist/index.js +3410 -3102
  149. package/dist/knob-embeddings.json +1 -1
  150. package/dist/registry/factory-signatures.json +6211 -2181
  151. package/package.json +2 -2
@@ -2385,7 +2385,7 @@
2385
2385
  "@t",
2386
2386
  "terrainSprite"
2387
2387
  ],
2388
- "height": 0.5,
2388
+ "height": 1.0,
2389
2389
  "position": {
2390
2390
  "x": [
2391
2391
  "object/get",
@@ -2399,7 +2399,7 @@
2399
2399
  ]
2400
2400
  },
2401
2401
  "type": "draw-sprite",
2402
- "width": 0.5
2402
+ "width": 1.0
2403
2403
  }
2404
2404
  ]
2405
2405
  ],
@@ -2798,7 +2798,7 @@
2798
2798
  "@t",
2799
2799
  "terrainSprite"
2800
2800
  ],
2801
- "height": 0.5,
2801
+ "height": 1.0,
2802
2802
  "position": {
2803
2803
  "x": [
2804
2804
  "object/get",
@@ -2812,7 +2812,7 @@
2812
2812
  ]
2813
2813
  },
2814
2814
  "type": "draw-sprite",
2815
- "width": 0.5
2815
+ "width": 1.0
2816
2816
  }
2817
2817
  ]
2818
2818
  ],
@@ -3180,7 +3180,7 @@
3180
3180
  "@t",
3181
3181
  "terrainSprite"
3182
3182
  ],
3183
- "height": 0.5,
3183
+ "height": 1.0,
3184
3184
  "position": {
3185
3185
  "x": [
3186
3186
  "object/get",
@@ -3194,7 +3194,7 @@
3194
3194
  ]
3195
3195
  },
3196
3196
  "type": "draw-sprite",
3197
- "width": 0.5
3197
+ "width": 1.0
3198
3198
  }
3199
3199
  ]
3200
3200
  ],
@@ -3562,7 +3562,7 @@
3562
3562
  "@t",
3563
3563
  "terrainSprite"
3564
3564
  ],
3565
- "height": 0.5,
3565
+ "height": 1.0,
3566
3566
  "position": {
3567
3567
  "x": [
3568
3568
  "object/get",
@@ -3576,7 +3576,7 @@
3576
3576
  ]
3577
3577
  },
3578
3578
  "type": "draw-sprite",
3579
- "width": 0.5
3579
+ "width": 1.0
3580
3580
  }
3581
3581
  ]
3582
3582
  ],
@@ -4205,7 +4205,7 @@
4205
4205
  "@t",
4206
4206
  "terrainSprite"
4207
4207
  ],
4208
- "height": 0.5,
4208
+ "height": 1.0,
4209
4209
  "position": {
4210
4210
  "x": [
4211
4211
  "object/get",
@@ -4219,7 +4219,7 @@
4219
4219
  ]
4220
4220
  },
4221
4221
  "type": "draw-sprite",
4222
- "width": 0.5
4222
+ "width": 1.0
4223
4223
  }
4224
4224
  ]
4225
4225
  ],
@@ -7821,7 +7821,7 @@
7821
7821
  "@t",
7822
7822
  "terrainSprite"
7823
7823
  ],
7824
- "height": 0.5,
7824
+ "height": 1.0,
7825
7825
  "position": {
7826
7826
  "x": [
7827
7827
  "object/get",
@@ -7835,7 +7835,7 @@
7835
7835
  ]
7836
7836
  },
7837
7837
  "type": "draw-sprite",
7838
- "width": 0.5
7838
+ "width": 1.0
7839
7839
  }
7840
7840
  ]
7841
7841
  ],
@@ -11594,7 +11594,7 @@
11594
11594
  "@t",
11595
11595
  "terrainSprite"
11596
11596
  ],
11597
- "height": 0.5,
11597
+ "height": 1.0,
11598
11598
  "position": {
11599
11599
  "x": [
11600
11600
  "object/get",
@@ -11608,7 +11608,7 @@
11608
11608
  ]
11609
11609
  },
11610
11610
  "type": "draw-sprite",
11611
- "width": 0.5
11611
+ "width": 1.0
11612
11612
  }
11613
11613
  ]
11614
11614
  ],
@@ -12468,7 +12468,7 @@
12468
12468
  "@t",
12469
12469
  "terrainSprite"
12470
12470
  ],
12471
- "height": 0.5,
12471
+ "height": 1.0,
12472
12472
  "position": {
12473
12473
  "x": [
12474
12474
  "object/get",
@@ -12482,7 +12482,7 @@
12482
12482
  ]
12483
12483
  },
12484
12484
  "type": "draw-sprite",
12485
- "width": 0.5
12485
+ "width": 1.0
12486
12486
  }
12487
12487
  ]
12488
12488
  ],
@@ -13501,7 +13501,7 @@
13501
13501
  "@t",
13502
13502
  "terrainSprite"
13503
13503
  ],
13504
- "height": 0.5,
13504
+ "height": 1.0,
13505
13505
  "position": {
13506
13506
  "x": [
13507
13507
  "object/get",
@@ -13515,7 +13515,7 @@
13515
13515
  ]
13516
13516
  },
13517
13517
  "type": "draw-sprite",
13518
- "width": 0.5
13518
+ "width": 1.0
13519
13519
  }
13520
13520
  ]
13521
13521
  ],
@@ -14421,7 +14421,7 @@
14421
14421
  "@t",
14422
14422
  "terrainSprite"
14423
14423
  ],
14424
- "height": 0.5,
14424
+ "height": 1.0,
14425
14425
  "position": {
14426
14426
  "x": [
14427
14427
  "object/get",
@@ -14435,7 +14435,7 @@
14435
14435
  ]
14436
14436
  },
14437
14437
  "type": "draw-sprite",
14438
- "width": 0.5
14438
+ "width": 1.0
14439
14439
  }
14440
14440
  ]
14441
14441
  ],
@@ -2385,7 +2385,7 @@
2385
2385
  "@t",
2386
2386
  "terrainSprite"
2387
2387
  ],
2388
- "height": 0.5,
2388
+ "height": 1.0,
2389
2389
  "position": {
2390
2390
  "x": [
2391
2391
  "object/get",
@@ -2399,7 +2399,7 @@
2399
2399
  ]
2400
2400
  },
2401
2401
  "type": "draw-sprite",
2402
- "width": 0.5
2402
+ "width": 1.0
2403
2403
  }
2404
2404
  ]
2405
2405
  ],
@@ -4394,7 +4394,7 @@
4394
4394
  "@t",
4395
4395
  "terrainSprite"
4396
4396
  ],
4397
- "height": 0.5,
4397
+ "height": 1.0,
4398
4398
  "position": {
4399
4399
  "x": [
4400
4400
  "object/get",
@@ -4408,7 +4408,7 @@
4408
4408
  ]
4409
4409
  },
4410
4410
  "type": "draw-sprite",
4411
- "width": 0.5
4411
+ "width": 1.0
4412
4412
  }
4413
4413
  ]
4414
4414
  ],
@@ -4861,7 +4861,7 @@
4861
4861
  "@t",
4862
4862
  "terrainSprite"
4863
4863
  ],
4864
- "height": 0.5,
4864
+ "height": 1.0,
4865
4865
  "position": {
4866
4866
  "x": [
4867
4867
  "object/get",
@@ -4875,7 +4875,7 @@
4875
4875
  ]
4876
4876
  },
4877
4877
  "type": "draw-sprite",
4878
- "width": 0.5
4878
+ "width": 1.0
4879
4879
  }
4880
4880
  ]
4881
4881
  ],
@@ -5384,7 +5384,7 @@
5384
5384
  "@t",
5385
5385
  "terrainSprite"
5386
5386
  ],
5387
- "height": 0.5,
5387
+ "height": 1.0,
5388
5388
  "position": {
5389
5389
  "x": [
5390
5390
  "object/get",
@@ -5398,7 +5398,7 @@
5398
5398
  ]
5399
5399
  },
5400
5400
  "type": "draw-sprite",
5401
- "width": 0.5
5401
+ "width": 1.0
5402
5402
  }
5403
5403
  ]
5404
5404
  ],
@@ -5854,7 +5854,7 @@
5854
5854
  "@t",
5855
5855
  "terrainSprite"
5856
5856
  ],
5857
- "height": 0.5,
5857
+ "height": 1.0,
5858
5858
  "position": {
5859
5859
  "x": [
5860
5860
  "object/get",
@@ -5868,7 +5868,7 @@
5868
5868
  ]
5869
5869
  },
5870
5870
  "type": "draw-sprite",
5871
- "width": 0.5
5871
+ "width": 1.0
5872
5872
  }
5873
5873
  ]
5874
5874
  ],
@@ -2773,6 +2773,7 @@
2773
2773
  [
2774
2774
  "array/reduce",
2775
2775
  "@tc.events",
2776
+ "@entity.initialState",
2776
2777
  [
2777
2778
  "fn",
2778
2779
  [
@@ -2805,8 +2806,7 @@
2805
2806
  "to",
2806
2807
  "@st"
2807
2808
  ]
2808
- ],
2809
- "@entity.initialState"
2809
+ ]
2810
2810
  ],
2811
2811
  "@tc.expectedState"
2812
2812
  ]
@@ -3086,6 +3086,7 @@
3086
3086
  [
3087
3087
  "array/reduce",
3088
3088
  "@tc.events",
3089
+ "@entity.initialState",
3089
3090
  [
3090
3091
  "fn",
3091
3092
  [
@@ -3118,8 +3119,7 @@
3118
3119
  "to",
3119
3120
  "@st"
3120
3121
  ]
3121
- ],
3122
- "@entity.initialState"
3122
+ ]
3123
3123
  ],
3124
3124
  "@tc.expectedState"
3125
3125
  ]
@@ -3157,6 +3157,7 @@
3157
3157
  [
3158
3158
  "array/reduce",
3159
3159
  "@tc.events",
3160
+ "@entity.initialState",
3160
3161
  [
3161
3162
  "fn",
3162
3163
  [
@@ -3189,8 +3190,7 @@
3189
3190
  "to",
3190
3191
  "@st"
3191
3192
  ]
3192
- ],
3193
- "@entity.initialState"
3193
+ ]
3194
3194
  ],
3195
3195
  "@tc.expectedState"
3196
3196
  ]
@@ -3465,6 +3465,7 @@
3465
3465
  [
3466
3466
  "array/reduce",
3467
3467
  "@tc.events",
3468
+ "@entity.initialState",
3468
3469
  [
3469
3470
  "fn",
3470
3471
  [
@@ -3497,8 +3498,7 @@
3497
3498
  "to",
3498
3499
  "@st"
3499
3500
  ]
3500
- ],
3501
- "@entity.initialState"
3501
+ ]
3502
3502
  ],
3503
3503
  "@tc.expectedState"
3504
3504
  ]
@@ -4920,7 +4920,7 @@
4920
4920
  "@t",
4921
4921
  "terrainSprite"
4922
4922
  ],
4923
- "height": 0.5,
4923
+ "height": 1.0,
4924
4924
  "position": {
4925
4925
  "x": [
4926
4926
  "object/get",
@@ -4934,7 +4934,7 @@
4934
4934
  ]
4935
4935
  },
4936
4936
  "type": "draw-sprite",
4937
- "width": 0.5
4937
+ "width": 1.0
4938
4938
  }
4939
4939
  ]
4940
4940
  ],
@@ -5547,7 +5547,7 @@
5547
5547
  "@t",
5548
5548
  "terrainSprite"
5549
5549
  ],
5550
- "height": 0.5,
5550
+ "height": 1.0,
5551
5551
  "position": {
5552
5552
  "x": [
5553
5553
  "object/get",
@@ -5561,7 +5561,7 @@
5561
5561
  ]
5562
5562
  },
5563
5563
  "type": "draw-sprite",
5564
- "width": 0.5
5564
+ "width": 1.0
5565
5565
  }
5566
5566
  ]
5567
5567
  ],
@@ -6192,7 +6192,7 @@
6192
6192
  "@t",
6193
6193
  "terrainSprite"
6194
6194
  ],
6195
- "height": 0.5,
6195
+ "height": 1.0,
6196
6196
  "position": {
6197
6197
  "x": [
6198
6198
  "object/get",
@@ -6206,7 +6206,7 @@
6206
6206
  ]
6207
6207
  },
6208
6208
  "type": "draw-sprite",
6209
- "width": 0.5
6209
+ "width": 1.0
6210
6210
  }
6211
6211
  ]
6212
6212
  ],
@@ -6687,7 +6687,7 @@
6687
6687
  "@t",
6688
6688
  "terrainSprite"
6689
6689
  ],
6690
- "height": 0.5,
6690
+ "height": 1.0,
6691
6691
  "position": {
6692
6692
  "x": [
6693
6693
  "object/get",
@@ -6701,7 +6701,7 @@
6701
6701
  ]
6702
6702
  },
6703
6703
  "type": "draw-sprite",
6704
- "width": 0.5
6704
+ "width": 1.0
6705
6705
  }
6706
6706
  ]
6707
6707
  ],
@@ -7192,7 +7192,7 @@
7192
7192
  "@t",
7193
7193
  "terrainSprite"
7194
7194
  ],
7195
- "height": 0.5,
7195
+ "height": 1.0,
7196
7196
  "position": {
7197
7197
  "x": [
7198
7198
  "object/get",
@@ -7206,7 +7206,7 @@
7206
7206
  ]
7207
7207
  },
7208
7208
  "type": "draw-sprite",
7209
- "width": 0.5
7209
+ "width": 1.0
7210
7210
  }
7211
7211
  ]
7212
7212
  ],
@@ -8019,7 +8019,7 @@
8019
8019
  "@t",
8020
8020
  "terrainSprite"
8021
8021
  ],
8022
- "height": 0.5,
8022
+ "height": 1.0,
8023
8023
  "position": {
8024
8024
  "x": [
8025
8025
  "object/get",
@@ -8033,7 +8033,7 @@
8033
8033
  ]
8034
8034
  },
8035
8035
  "type": "draw-sprite",
8036
- "width": 0.5
8036
+ "width": 1.0
8037
8037
  }
8038
8038
  ]
8039
8039
  ],
@@ -8513,7 +8513,7 @@
8513
8513
  "@t",
8514
8514
  "terrainSprite"
8515
8515
  ],
8516
- "height": 0.5,
8516
+ "height": 1.0,
8517
8517
  "position": {
8518
8518
  "x": [
8519
8519
  "object/get",
@@ -8527,7 +8527,7 @@
8527
8527
  ]
8528
8528
  },
8529
8529
  "type": "draw-sprite",
8530
- "width": 0.5
8530
+ "width": 1.0
8531
8531
  }
8532
8532
  ]
8533
8533
  ],