@almadar/std 16.204.0 → 16.206.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 (497) hide show
  1. package/behaviors/lolo/ml/organisms/std-escalating-decision.lolo +3 -3
  2. package/behaviors/lolo/ui/core/atoms/std-modal-editor.lolo +265 -13
  3. package/behaviors/lolo/ui/core/molecules/ui-code-block.lolo +5 -5
  4. package/behaviors/lolo/ui/core/molecules/ui-floating-toolbar.lolo +1 -1
  5. package/behaviors/lolo/ui/core/molecules/ui-menu.lolo +2 -1
  6. package/behaviors/lolo/ui/game/atoms/std-area-fill.lolo +8 -3
  7. package/behaviors/lolo/ui/game/atoms/std-choice-gate.lolo +7 -3
  8. package/behaviors/lolo/ui/game/atoms/std-coef-pad.lolo +8 -3
  9. package/behaviors/lolo/ui/game/atoms/std-gate-lock.lolo +8 -3
  10. package/behaviors/lolo/ui/game/atoms/std-loop-lock.lolo +7 -3
  11. package/behaviors/lolo/ui/game/atoms/std-pad-lock.lolo +10 -3
  12. package/behaviors/lolo/ui/game/atoms/std-patrol-hazard.lolo +9 -3
  13. package/behaviors/lolo/ui/game/atoms/std-pickup.lolo +29 -5
  14. package/behaviors/lolo/ui/game/atoms/std-platformer-body.lolo +36 -14
  15. package/behaviors/lolo/ui/game/atoms/std-velocity-gate.lolo +7 -3
  16. package/behaviors/lolo/ui/game/organisms/std-platformer-puzzle.lolo +302 -0
  17. package/behaviors/lolo/ui/learning/atoms/std-learn-slope-probe.lolo +12 -6
  18. package/behaviors/registry/agent/atoms/std-agent-completion.orb +27 -0
  19. package/behaviors/registry/agent/atoms/std-agent-context.orb +47 -0
  20. package/behaviors/registry/agent/atoms/std-agent-fix-loop.orb +57 -1
  21. package/behaviors/registry/agent/atoms/std-agent-memory.orb +88 -1
  22. package/behaviors/registry/agent/atoms/std-agent-planner.orb +58 -1
  23. package/behaviors/registry/agent/atoms/std-agent-session.orb +95 -1
  24. package/behaviors/registry/agent/atoms/std-agent-tool-call.orb +66 -1
  25. package/behaviors/registry/agent/atoms/std-agent-tool-loop.orb +74 -1
  26. package/behaviors/registry/agent/atoms/std-agent-trace.orb +38 -0
  27. package/behaviors/registry/agent/organisms/std-agent-builder.orb +70 -1
  28. package/behaviors/registry/agent/organisms/std-agent-rabit.orb +239 -2
  29. package/behaviors/registry/infra/atoms/std-anim-tick.orb +24 -0
  30. package/behaviors/registry/infra/atoms/std-approval-gate.orb +73 -20
  31. package/behaviors/registry/infra/atoms/std-audit-capture.orb +38 -0
  32. package/behaviors/registry/infra/atoms/std-cache-aside.orb +45 -62
  33. package/behaviors/registry/infra/atoms/std-calendar-sync.orb +113 -1
  34. package/behaviors/registry/infra/atoms/std-cascade-on-delete.orb +32 -0
  35. package/behaviors/registry/infra/atoms/std-circuit-breaker.orb +38 -32
  36. package/behaviors/registry/infra/atoms/std-cooldown.orb +28 -0
  37. package/behaviors/registry/infra/atoms/std-cross-reference.orb +55 -1
  38. package/behaviors/registry/infra/atoms/std-data-erasure.orb +52 -16
  39. package/behaviors/registry/infra/atoms/std-game-clock.orb +20 -0
  40. package/behaviors/registry/infra/atoms/std-lifecycle.orb +34 -0
  41. package/behaviors/registry/infra/atoms/std-migration-job.orb +165 -1
  42. package/behaviors/registry/infra/atoms/std-mod-queue.orb +23 -16
  43. package/behaviors/registry/infra/atoms/std-notification-center.orb +119 -1
  44. package/behaviors/registry/infra/atoms/std-notify-on-event.orb +162 -1
  45. package/behaviors/registry/infra/atoms/std-rate-limiter.orb +32 -28
  46. package/behaviors/registry/infra/atoms/std-reminder-scheduler.orb +30 -0
  47. package/behaviors/registry/infra/atoms/std-row-access-control.orb +58 -1
  48. package/behaviors/registry/infra/atoms/std-status-lifecycle.orb +34 -1
  49. package/behaviors/registry/infra/organisms/std-status-lifecycle-control.orb +33 -2
  50. package/behaviors/registry/ml/atoms/std-data-collector.orb +18 -0
  51. package/behaviors/registry/ml/atoms/std-graph-builder.orb +41 -1
  52. package/behaviors/registry/ml/atoms/std-ml-classify.orb +67 -1
  53. package/behaviors/registry/ml/atoms/std-ml-exact-check.orb +18 -0
  54. package/behaviors/registry/ml/atoms/std-ml-infer.orb +125 -1
  55. package/behaviors/registry/ml/atoms/std-ml-label-capture.orb +34 -0
  56. package/behaviors/registry/ml/atoms/std-ml-lookup.orb +18 -0
  57. package/behaviors/registry/ml/atoms/std-ml-posterior.orb +42 -0
  58. package/behaviors/registry/ml/atoms/std-ml-similarity.orb +82 -1
  59. package/behaviors/registry/ml/atoms/std-tokenizer.orb +30 -0
  60. package/behaviors/registry/ml/atoms/std-weight-validator.orb +60 -1
  61. package/behaviors/registry/ml/organisms/std-escalating-decision.orb +122 -13
  62. package/behaviors/registry/ml/organisms/std-knowledge-tracing.orb +51 -4
  63. package/behaviors/registry/ui/avl/atoms/ui-behavior-view.orb +6 -0
  64. package/behaviors/registry/ui/avl/atoms/ui-module-card.orb +6 -0
  65. package/behaviors/registry/ui/core/atoms/std-app-layout.orb +10 -0
  66. package/behaviors/registry/ui/core/atoms/std-app-search.orb +110 -1
  67. package/behaviors/registry/ui/core/atoms/std-billable-hour.orb +119 -2
  68. package/behaviors/registry/ui/core/atoms/std-board.orb +180 -1
  69. package/behaviors/registry/ui/core/atoms/std-browse.orb +143 -6
  70. package/behaviors/registry/ui/core/atoms/std-calendar.orb +59 -1
  71. package/behaviors/registry/ui/core/atoms/std-confirmation.orb +18 -0
  72. package/behaviors/registry/ui/core/atoms/std-dashboard-grid-embedded.orb +13 -2
  73. package/behaviors/registry/ui/core/atoms/std-date-range.orb +14 -0
  74. package/behaviors/registry/ui/core/atoms/std-detail-layout.orb +13 -0
  75. package/behaviors/registry/ui/core/atoms/std-esign-flow.orb +39 -4
  76. package/behaviors/registry/ui/core/atoms/std-esign-request.orb +20 -6
  77. package/behaviors/registry/ui/core/atoms/std-event-log.orb +146 -1
  78. package/behaviors/registry/ui/core/atoms/std-export.orb +35 -4
  79. package/behaviors/registry/ui/core/atoms/std-file-store.orb +26 -0
  80. package/behaviors/registry/ui/core/atoms/std-filter.orb +57 -1
  81. package/behaviors/registry/ui/core/atoms/std-form-advanced.orb +66 -1
  82. package/behaviors/registry/ui/core/atoms/std-gallery.orb +44 -18
  83. package/behaviors/registry/ui/core/atoms/std-geosearch.orb +22 -0
  84. package/behaviors/registry/ui/core/atoms/std-graphs.orb +71 -1
  85. package/behaviors/registry/ui/core/atoms/std-image-upload-multi.orb +67 -1
  86. package/behaviors/registry/ui/core/atoms/std-import.orb +69 -4
  87. package/behaviors/registry/ui/core/atoms/std-list.orb +36 -6
  88. package/behaviors/registry/ui/core/atoms/std-modal-editor.orb +1865 -169
  89. package/behaviors/registry/ui/core/atoms/std-modal.orb +44 -1
  90. package/behaviors/registry/ui/core/atoms/std-multi-party-flow.orb +201 -1
  91. package/behaviors/registry/ui/core/atoms/std-notification-panel.orb +24 -1
  92. package/behaviors/registry/ui/core/atoms/std-pagination.orb +35 -1
  93. package/behaviors/registry/ui/core/atoms/std-rating-review.orb +159 -1
  94. package/behaviors/registry/ui/core/atoms/std-record-detail.orb +144 -1
  95. package/behaviors/registry/ui/core/atoms/std-recurrence.orb +103 -1
  96. package/behaviors/registry/ui/core/atoms/std-related.orb +14 -0
  97. package/behaviors/registry/ui/core/atoms/std-saved-search.orb +30 -0
  98. package/behaviors/registry/ui/core/atoms/std-scatter.orb +51 -1
  99. package/behaviors/registry/ui/core/atoms/std-search.orb +10 -0
  100. package/behaviors/registry/ui/core/atoms/std-selection.orb +28 -1
  101. package/behaviors/registry/ui/core/atoms/std-signature-capture.orb +18 -0
  102. package/behaviors/registry/ui/core/atoms/std-stats.orb +153 -1
  103. package/behaviors/registry/ui/core/atoms/std-step-flow.orb +154 -1
  104. package/behaviors/registry/ui/core/atoms/std-tabs.orb +41 -1
  105. package/behaviors/registry/ui/core/atoms/std-tag-strip.orb +34 -0
  106. package/behaviors/registry/ui/core/atoms/std-tag-taxonomy.orb +48 -1
  107. package/behaviors/registry/ui/core/atoms/std-thread.orb +30 -0
  108. package/behaviors/registry/ui/core/atoms/std-tree.orb +36 -1
  109. package/behaviors/registry/ui/core/atoms/std-version-history.orb +54 -0
  110. package/behaviors/registry/ui/core/atoms/std-vote.orb +22 -0
  111. package/behaviors/registry/ui/core/atoms/std-wizard.orb +130 -1
  112. package/behaviors/registry/ui/core/atoms/ui-aside.orb +6 -0
  113. package/behaviors/registry/ui/core/atoms/ui-atlas-image.orb +6 -0
  114. package/behaviors/registry/ui/core/atoms/ui-atlas-panel.orb +6 -0
  115. package/behaviors/registry/ui/core/atoms/ui-avatar.orb +6 -0
  116. package/behaviors/registry/ui/core/atoms/ui-badge.orb +6 -0
  117. package/behaviors/registry/ui/core/atoms/ui-box.orb +6 -0
  118. package/behaviors/registry/ui/core/atoms/ui-button.orb +6 -0
  119. package/behaviors/registry/ui/core/atoms/ui-card.orb +6 -0
  120. package/behaviors/registry/ui/core/atoms/ui-center.orb +6 -0
  121. package/behaviors/registry/ui/core/atoms/ui-checkbox.orb +6 -0
  122. package/behaviors/registry/ui/core/atoms/ui-conditional-wrapper.orb +6 -0
  123. package/behaviors/registry/ui/core/atoms/ui-confetti-effect.orb +6 -0
  124. package/behaviors/registry/ui/core/atoms/ui-day-cell.orb +6 -0
  125. package/behaviors/registry/ui/core/atoms/ui-dialog.orb +6 -0
  126. package/behaviors/registry/ui/core/atoms/ui-divider.orb +6 -0
  127. package/behaviors/registry/ui/core/atoms/ui-filter-pill.orb +10 -0
  128. package/behaviors/registry/ui/core/atoms/ui-flip-container.orb +6 -0
  129. package/behaviors/registry/ui/core/atoms/ui-game-icon.orb +6 -0
  130. package/behaviors/registry/ui/core/atoms/ui-hstack.orb +6 -0
  131. package/behaviors/registry/ui/core/atoms/ui-icon.orb +6 -0
  132. package/behaviors/registry/ui/core/atoms/ui-infinite-scroll-sentinel.orb +6 -0
  133. package/behaviors/registry/ui/core/atoms/ui-input.orb +10 -0
  134. package/behaviors/registry/ui/core/atoms/ui-label.orb +6 -0
  135. package/behaviors/registry/ui/core/atoms/ui-law-reference-tooltip.orb +6 -0
  136. package/behaviors/registry/ui/core/atoms/ui-overlay.orb +6 -0
  137. package/behaviors/registry/ui/core/atoms/ui-presence.orb +6 -0
  138. package/behaviors/registry/ui/core/atoms/ui-progress-bar.orb +6 -0
  139. package/behaviors/registry/ui/core/atoms/ui-radio.orb +10 -0
  140. package/behaviors/registry/ui/core/atoms/ui-range-slider.orb +10 -0
  141. package/behaviors/registry/ui/core/atoms/ui-section-header.orb +6 -0
  142. package/behaviors/registry/ui/core/atoms/ui-select.orb +6 -0
  143. package/behaviors/registry/ui/core/atoms/ui-spacer.orb +6 -0
  144. package/behaviors/registry/ui/core/atoms/ui-sparkline.orb +6 -0
  145. package/behaviors/registry/ui/core/atoms/ui-spinner.orb +6 -0
  146. package/behaviors/registry/ui/core/atoms/ui-stack.orb +6 -0
  147. package/behaviors/registry/ui/core/atoms/ui-status-dot.orb +6 -0
  148. package/behaviors/registry/ui/core/atoms/ui-svg-branch.orb +6 -0
  149. package/behaviors/registry/ui/core/atoms/ui-svg-connection.orb +6 -0
  150. package/behaviors/registry/ui/core/atoms/ui-svg-flow.orb +6 -0
  151. package/behaviors/registry/ui/core/atoms/ui-svg-grid.orb +6 -0
  152. package/behaviors/registry/ui/core/atoms/ui-svg-lobe.orb +6 -0
  153. package/behaviors/registry/ui/core/atoms/ui-svg-mesh.orb +6 -0
  154. package/behaviors/registry/ui/core/atoms/ui-svg-morph.orb +6 -0
  155. package/behaviors/registry/ui/core/atoms/ui-svg-node.orb +6 -0
  156. package/behaviors/registry/ui/core/atoms/ui-svg-pulse.orb +6 -0
  157. package/behaviors/registry/ui/core/atoms/ui-svg-ring.orb +6 -0
  158. package/behaviors/registry/ui/core/atoms/ui-svg-shield.orb +6 -0
  159. package/behaviors/registry/ui/core/atoms/ui-svg-stack.orb +6 -0
  160. package/behaviors/registry/ui/core/atoms/ui-switch.orb +10 -0
  161. package/behaviors/registry/ui/core/atoms/ui-text-highlight.orb +10 -0
  162. package/behaviors/registry/ui/core/atoms/ui-textarea.orb +6 -0
  163. package/behaviors/registry/ui/core/atoms/ui-theme-toggle.orb +6 -0
  164. package/behaviors/registry/ui/core/atoms/ui-time-slot-cell.orb +10 -0
  165. package/behaviors/registry/ui/core/atoms/ui-trait-frame.orb +6 -0
  166. package/behaviors/registry/ui/core/atoms/ui-trend-indicator.orb +6 -0
  167. package/behaviors/registry/ui/core/atoms/ui-typewriter-text.orb +6 -0
  168. package/behaviors/registry/ui/core/atoms/ui-typography.orb +6 -0
  169. package/behaviors/registry/ui/core/atoms/ui-vstack.orb +6 -0
  170. package/behaviors/registry/ui/core/molecules/std-stat-rows.orb +24 -1
  171. package/behaviors/registry/ui/core/molecules/ui-accordion.orb +6 -0
  172. package/behaviors/registry/ui/core/molecules/ui-activation-block.orb +6 -0
  173. package/behaviors/registry/ui/core/molecules/ui-alert.orb +6 -0
  174. package/behaviors/registry/ui/core/molecules/ui-bloom-quiz-block.orb +6 -0
  175. package/behaviors/registry/ui/core/molecules/ui-branching-logic-builder.orb +6 -0
  176. package/behaviors/registry/ui/core/molecules/ui-breadcrumb.orb +6 -0
  177. package/behaviors/registry/ui/core/molecules/ui-calendar-grid.orb +10 -0
  178. package/behaviors/registry/ui/core/molecules/ui-carousel.orb +6 -0
  179. package/behaviors/registry/ui/core/molecules/ui-chart-legend.orb +6 -0
  180. package/behaviors/registry/ui/core/molecules/ui-chart.orb +6 -0
  181. package/behaviors/registry/ui/core/molecules/ui-code-block.orb +38 -4
  182. package/behaviors/registry/ui/core/molecules/ui-command-palette.orb +10 -0
  183. package/behaviors/registry/ui/core/molecules/ui-confirm-dialog.orb +10 -0
  184. package/behaviors/registry/ui/core/molecules/ui-connection-block.orb +6 -0
  185. package/behaviors/registry/ui/core/molecules/ui-container.orb +6 -0
  186. package/behaviors/registry/ui/core/molecules/ui-content-renderer.orb +6 -0
  187. package/behaviors/registry/ui/core/molecules/ui-data-grid.orb +10 -0
  188. package/behaviors/registry/ui/core/molecules/ui-data-list.orb +10 -0
  189. package/behaviors/registry/ui/core/molecules/ui-date-range-picker.orb +14 -0
  190. package/behaviors/registry/ui/core/molecules/ui-date-range-selector.orb +6 -0
  191. package/behaviors/registry/ui/core/molecules/ui-doc-breadcrumb.orb +6 -0
  192. package/behaviors/registry/ui/core/molecules/ui-doc-pagination.orb +6 -0
  193. package/behaviors/registry/ui/core/molecules/ui-doc-search.orb +6 -0
  194. package/behaviors/registry/ui/core/molecules/ui-doc-sidebar.orb +6 -0
  195. package/behaviors/registry/ui/core/molecules/ui-doc-toc.orb +6 -0
  196. package/behaviors/registry/ui/core/molecules/ui-document-details.orb +10 -0
  197. package/behaviors/registry/ui/core/molecules/ui-document-panel.orb +14 -0
  198. package/behaviors/registry/ui/core/molecules/ui-document-viewer.orb +6 -0
  199. package/behaviors/registry/ui/core/molecules/ui-drawer.orb +10 -0
  200. package/behaviors/registry/ui/core/molecules/ui-edge-decoration.orb +6 -0
  201. package/behaviors/registry/ui/core/molecules/ui-emoji-picker.orb +6 -0
  202. package/behaviors/registry/ui/core/molecules/ui-empty-state.orb +6 -0
  203. package/behaviors/registry/ui/core/molecules/ui-error-boundary.orb +6 -0
  204. package/behaviors/registry/ui/core/molecules/ui-error-state.orb +6 -0
  205. package/behaviors/registry/ui/core/molecules/ui-feature-grid.orb +6 -0
  206. package/behaviors/registry/ui/core/molecules/ui-file-tree.orb +6 -0
  207. package/behaviors/registry/ui/core/molecules/ui-filter-group.orb +14 -0
  208. package/behaviors/registry/ui/core/molecules/ui-flex.orb +6 -0
  209. package/behaviors/registry/ui/core/molecules/ui-flip-card.orb +6 -0
  210. package/behaviors/registry/ui/core/molecules/ui-floating-action-button.orb +6 -0
  211. package/behaviors/registry/ui/core/molecules/ui-floating-toolbar.orb +10 -1
  212. package/behaviors/registry/ui/core/molecules/ui-form-actions.orb +10 -0
  213. package/behaviors/registry/ui/core/molecules/ui-form-field.orb +6 -0
  214. package/behaviors/registry/ui/core/molecules/ui-form-layout.orb +6 -0
  215. package/behaviors/registry/ui/core/molecules/ui-form-section-header.orb +6 -0
  216. package/behaviors/registry/ui/core/molecules/ui-fx-overlay.orb +6 -0
  217. package/behaviors/registry/ui/core/molecules/ui-gradient-divider.orb +6 -0
  218. package/behaviors/registry/ui/core/molecules/ui-graph-canvas.orb +6 -0
  219. package/behaviors/registry/ui/core/molecules/ui-graph-view.orb +6 -0
  220. package/behaviors/registry/ui/core/molecules/ui-grid.orb +6 -0
  221. package/behaviors/registry/ui/core/molecules/ui-header.orb +6 -0
  222. package/behaviors/registry/ui/core/molecules/ui-import-preview-tree.orb +6 -0
  223. package/behaviors/registry/ui/core/molecules/ui-import-progress.orb +6 -0
  224. package/behaviors/registry/ui/core/molecules/ui-import-source-picker.orb +6 -0
  225. package/behaviors/registry/ui/core/molecules/ui-input-group.orb +10 -0
  226. package/behaviors/registry/ui/core/molecules/ui-jazari-state-machine.orb +6 -0
  227. package/behaviors/registry/ui/core/molecules/ui-lightbox.orb +10 -0
  228. package/behaviors/registry/ui/core/molecules/ui-likert-scale.orb +6 -0
  229. package/behaviors/registry/ui/core/molecules/ui-line-chart.orb +6 -0
  230. package/behaviors/registry/ui/core/molecules/ui-loading-state.orb +6 -0
  231. package/behaviors/registry/ui/core/molecules/ui-map-view.orb +6 -0
  232. package/behaviors/registry/ui/core/molecules/ui-markdown-content.orb +6 -0
  233. package/behaviors/registry/ui/core/molecules/ui-matrix-question.orb +6 -0
  234. package/behaviors/registry/ui/core/molecules/ui-menu.orb +21 -0
  235. package/behaviors/registry/ui/core/molecules/ui-meter.orb +6 -0
  236. package/behaviors/registry/ui/core/molecules/ui-modal.orb +10 -0
  237. package/behaviors/registry/ui/core/molecules/ui-navigation.orb +6 -0
  238. package/behaviors/registry/ui/core/molecules/ui-notification.orb +6 -0
  239. package/behaviors/registry/ui/core/molecules/ui-number-stepper.orb +10 -0
  240. package/behaviors/registry/ui/core/molecules/ui-option-constraint-group.orb +6 -0
  241. package/behaviors/registry/ui/core/molecules/ui-orbital-visualization.orb +6 -0
  242. package/behaviors/registry/ui/core/molecules/ui-page-header.orb +6 -0
  243. package/behaviors/registry/ui/core/molecules/ui-page-transition.orb +6 -0
  244. package/behaviors/registry/ui/core/molecules/ui-pagination.orb +10 -0
  245. package/behaviors/registry/ui/core/molecules/ui-popover.orb +10 -0
  246. package/behaviors/registry/ui/core/molecules/ui-positioned-canvas.orb +10 -0
  247. package/behaviors/registry/ui/core/molecules/ui-progress-dots.orb +6 -0
  248. package/behaviors/registry/ui/core/molecules/ui-pull-to-refresh.orb +6 -0
  249. package/behaviors/registry/ui/core/molecules/ui-qr-scanner.orb +6 -0
  250. package/behaviors/registry/ui/core/molecules/ui-quiz-block.orb +6 -0
  251. package/behaviors/registry/ui/core/molecules/ui-reflection-block.orb +6 -0
  252. package/behaviors/registry/ui/core/molecules/ui-relation-select.orb +10 -0
  253. package/behaviors/registry/ui/core/molecules/ui-repeatable-form-section.orb +6 -0
  254. package/behaviors/registry/ui/core/molecules/ui-reply-tree.orb +10 -0
  255. package/behaviors/registry/ui/core/molecules/ui-rich-text-editor.orb +10 -0
  256. package/behaviors/registry/ui/core/molecules/ui-scaled-diagram.orb +6 -0
  257. package/behaviors/registry/ui/core/molecules/ui-search-input.orb +14 -0
  258. package/behaviors/registry/ui/core/molecules/ui-section.orb +6 -0
  259. package/behaviors/registry/ui/core/molecules/ui-side-panel.orb +10 -0
  260. package/behaviors/registry/ui/core/molecules/ui-sidebar.orb +10 -0
  261. package/behaviors/registry/ui/core/molecules/ui-signature-pad.orb +6 -0
  262. package/behaviors/registry/ui/core/molecules/ui-simple-grid.orb +6 -0
  263. package/behaviors/registry/ui/core/molecules/ui-skeleton.orb +6 -0
  264. package/behaviors/registry/ui/core/molecules/ui-social-proof.orb +6 -0
  265. package/behaviors/registry/ui/core/molecules/ui-sortable-list.orb +10 -0
  266. package/behaviors/registry/ui/core/molecules/ui-split.orb +6 -0
  267. package/behaviors/registry/ui/core/molecules/ui-star-rating.orb +10 -0
  268. package/behaviors/registry/ui/core/molecules/ui-stat-display.orb +6 -0
  269. package/behaviors/registry/ui/core/molecules/ui-swipeable-row.orb +6 -0
  270. package/behaviors/registry/ui/core/molecules/ui-table-view.orb +10 -0
  271. package/behaviors/registry/ui/core/molecules/ui-tabs.orb +6 -0
  272. package/behaviors/registry/ui/core/molecules/ui-tag-input.orb +6 -0
  273. package/behaviors/registry/ui/core/molecules/ui-tooltip.orb +6 -0
  274. package/behaviors/registry/ui/core/molecules/ui-upload-drop-zone.orb +6 -0
  275. package/behaviors/registry/ui/core/molecules/ui-version-diff.orb +6 -0
  276. package/behaviors/registry/ui/core/molecules/ui-violation-alert.orb +6 -0
  277. package/behaviors/registry/ui/core/molecules/ui-vote-stack.orb +6 -0
  278. package/behaviors/registry/ui/core/molecules/ui-wizard-container.orb +6 -0
  279. package/behaviors/registry/ui/core/molecules/ui-wizard-navigation.orb +14 -0
  280. package/behaviors/registry/ui/core/molecules/ui-wizard-progress.orb +6 -0
  281. package/behaviors/registry/ui/core/organisms/ui-chat-bar.orb +6 -0
  282. package/behaviors/registry/ui/core/organisms/ui-code-runner-panel.orb +6 -0
  283. package/behaviors/registry/ui/core/organisms/ui-dashboard-grid.orb +6 -0
  284. package/behaviors/registry/ui/core/organisms/ui-detail-panel.orb +10 -0
  285. package/behaviors/registry/ui/core/organisms/ui-dock-layout.orb +6 -0
  286. package/behaviors/registry/ui/core/organisms/ui-drawer-slot.orb +10 -0
  287. package/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +10 -0
  288. package/behaviors/registry/ui/core/organisms/ui-entity-list.orb +10 -0
  289. package/behaviors/registry/ui/core/organisms/ui-entity-table.orb +10 -0
  290. package/behaviors/registry/ui/core/organisms/ui-form-section.orb +10 -0
  291. package/behaviors/registry/ui/core/organisms/ui-form.orb +10 -0
  292. package/behaviors/registry/ui/core/organisms/ui-master-detail-layout.orb +6 -0
  293. package/behaviors/registry/ui/core/organisms/ui-master-detail.orb +10 -0
  294. package/behaviors/registry/ui/core/organisms/ui-media-gallery.orb +10 -0
  295. package/behaviors/registry/ui/core/organisms/ui-modal-slot.orb +10 -0
  296. package/behaviors/registry/ui/core/organisms/ui-runtime-debugger.orb +6 -0
  297. package/behaviors/registry/ui/core/organisms/ui-segment-renderer.orb +6 -0
  298. package/behaviors/registry/ui/core/organisms/ui-split-pane.orb +10 -0
  299. package/behaviors/registry/ui/core/organisms/ui-stat-card.orb +10 -0
  300. package/behaviors/registry/ui/core/organisms/ui-state-machine-view.orb +6 -0
  301. package/behaviors/registry/ui/core/organisms/ui-subagent-trace-panel.orb +10 -0
  302. package/behaviors/registry/ui/core/organisms/ui-tabbed-container.orb +6 -0
  303. package/behaviors/registry/ui/core/organisms/ui-timeline.orb +10 -0
  304. package/behaviors/registry/ui/core/organisms/ui-toast-slot.orb +10 -0
  305. package/behaviors/registry/ui/core/templates/ui-counter-template.orb +10 -0
  306. package/behaviors/registry/ui/core/templates/ui-dashboard-layout.orb +6 -0
  307. package/behaviors/registry/ui/core/templates/ui-generic-app-template.orb +10 -0
  308. package/behaviors/registry/ui/game/atoms/std-arcade-flow.orb +10 -0
  309. package/behaviors/registry/ui/game/atoms/std-arcade-play.orb +89 -1
  310. package/behaviors/registry/ui/game/atoms/std-area-fill.orb +219 -4
  311. package/behaviors/registry/ui/game/atoms/std-audio-cue.orb +30 -0
  312. package/behaviors/registry/ui/game/atoms/std-camera-rig.orb +63 -0
  313. package/behaviors/registry/ui/game/atoms/std-chase-ai.orb +133 -1
  314. package/behaviors/registry/ui/game/atoms/std-choice-gate.orb +122 -3
  315. package/behaviors/registry/ui/game/atoms/std-coef-pad.orb +159 -3
  316. package/behaviors/registry/ui/game/atoms/std-curve-fog.orb +26 -1
  317. package/behaviors/registry/ui/game/atoms/std-dungeon-combat.orb +150 -1
  318. package/behaviors/registry/ui/game/atoms/std-fx-narrative.orb +18 -0
  319. package/behaviors/registry/ui/game/atoms/std-fx-particles.orb +15 -0
  320. package/behaviors/registry/ui/game/atoms/std-fx-trail.orb +40 -1
  321. package/behaviors/registry/ui/game/atoms/std-gate-lock.orb +120 -3
  322. package/behaviors/registry/ui/game/atoms/std-gather.orb +180 -1
  323. package/behaviors/registry/ui/game/atoms/std-gold.orb +10 -0
  324. package/behaviors/registry/ui/game/atoms/std-grid-tactics.orb +130 -1
  325. package/behaviors/registry/ui/game/atoms/std-hero-nav.orb +92 -1
  326. package/behaviors/registry/ui/game/atoms/std-lives.orb +38 -0
  327. package/behaviors/registry/ui/game/atoms/std-loop-lock.orb +117 -3
  328. package/behaviors/registry/ui/game/atoms/std-market-flow.orb +10 -0
  329. package/behaviors/registry/ui/game/atoms/std-mesh-asset-art.orb +10 -0
  330. package/behaviors/registry/ui/game/atoms/std-motion-body.orb +68 -1
  331. package/behaviors/registry/ui/game/atoms/std-objective-flow.orb +10 -0
  332. package/behaviors/registry/ui/game/atoms/std-objective-reach.orb +184 -1
  333. package/behaviors/registry/ui/game/atoms/std-pad-lock.orb +118 -3
  334. package/behaviors/registry/ui/game/atoms/std-patience.orb +215 -1
  335. package/behaviors/registry/ui/game/atoms/std-patrol-hazard.orb +161 -3
  336. package/behaviors/registry/ui/game/atoms/std-pickup.orb +387 -24
  337. package/behaviors/registry/ui/game/atoms/std-platformer-body.orb +505 -17
  338. package/behaviors/registry/ui/game/atoms/std-production.orb +14 -0
  339. package/behaviors/registry/ui/game/atoms/std-round-flow.orb +10 -0
  340. package/behaviors/registry/ui/game/atoms/std-score.orb +10 -0
  341. package/behaviors/registry/ui/game/atoms/std-survival-flow.orb +10 -0
  342. package/behaviors/registry/ui/game/atoms/std-svg-asset-art.orb +10 -0
  343. package/behaviors/registry/ui/game/atoms/std-tutorial-autodemo.orb +117 -1
  344. package/behaviors/registry/ui/game/atoms/std-tutorial-overlay.orb +36 -0
  345. package/behaviors/registry/ui/game/atoms/std-velocity-gate.orb +140 -3
  346. package/behaviors/registry/ui/game/atoms/std-xp.orb +22 -0
  347. package/behaviors/registry/ui/game/atoms/std-zone-card.orb +70 -1
  348. package/behaviors/registry/ui/game/atoms/ui-action-palette.orb +6 -0
  349. package/behaviors/registry/ui/game/atoms/ui-action-tile.orb +6 -0
  350. package/behaviors/registry/ui/game/atoms/ui-canvas-2d.orb +6 -0
  351. package/behaviors/registry/ui/game/atoms/ui-canvas.orb +6 -0
  352. package/behaviors/registry/ui/game/atoms/ui-choice-button.orb +6 -0
  353. package/behaviors/registry/ui/game/atoms/ui-control-button.orb +6 -0
  354. package/behaviors/registry/ui/game/atoms/ui-control-grid.orb +6 -0
  355. package/behaviors/registry/ui/game/atoms/ui-dialogue-bubble.orb +6 -0
  356. package/behaviors/registry/ui/game/atoms/ui-draw-fx-layer.orb +6 -0
  357. package/behaviors/registry/ui/game/atoms/ui-draw-group.orb +6 -0
  358. package/behaviors/registry/ui/game/atoms/ui-draw-mesh.orb +6 -0
  359. package/behaviors/registry/ui/game/atoms/ui-draw-shape-layer.orb +6 -0
  360. package/behaviors/registry/ui/game/atoms/ui-draw-shape.orb +6 -0
  361. package/behaviors/registry/ui/game/atoms/ui-draw-sprite-layer.orb +6 -0
  362. package/behaviors/registry/ui/game/atoms/ui-draw-sprite.orb +6 -0
  363. package/behaviors/registry/ui/game/atoms/ui-draw-text-layer.orb +6 -0
  364. package/behaviors/registry/ui/game/atoms/ui-draw-text.orb +6 -0
  365. package/behaviors/registry/ui/game/atoms/ui-game-audio-cue.orb +6 -0
  366. package/behaviors/registry/ui/game/atoms/ui-game-audio-toggle.orb +6 -0
  367. package/behaviors/registry/ui/game/atoms/ui-game-hud.orb +6 -0
  368. package/behaviors/registry/ui/game/atoms/ui-game-menu.orb +6 -0
  369. package/behaviors/registry/ui/game/atoms/ui-health-bar.orb +6 -0
  370. package/behaviors/registry/ui/game/atoms/ui-score-display.orb +6 -0
  371. package/behaviors/registry/ui/game/atoms/ui-sequence-bar.orb +6 -0
  372. package/behaviors/registry/ui/game/atoms/ui-stat-badge.orb +6 -0
  373. package/behaviors/registry/ui/game/atoms/ui-state-graph.orb +6 -0
  374. package/behaviors/registry/ui/game/atoms/ui-state-json-view.orb +6 -0
  375. package/behaviors/registry/ui/game/atoms/ui-timer-display.orb +84 -1
  376. package/behaviors/registry/ui/game/atoms/ui-trait-slot.orb +10 -0
  377. package/behaviors/registry/ui/game/organisms/std-arcade-board-3d.orb +567 -8
  378. package/behaviors/registry/ui/game/organisms/std-crew-board-2d.orb +545 -6
  379. package/behaviors/registry/ui/game/organisms/std-dungeon-board-2d.orb +804 -10
  380. package/behaviors/registry/ui/game/organisms/std-market-board-3d.orb +597 -8
  381. package/behaviors/registry/ui/game/organisms/std-objective-board-3d.orb +565 -8
  382. package/behaviors/registry/ui/game/organisms/std-platformer-board-2d.orb +561 -6
  383. package/behaviors/registry/ui/game/organisms/std-platformer-puzzle.orb +2075 -0
  384. package/behaviors/registry/ui/game/organisms/std-survival-board-3d.orb +551 -8
  385. package/behaviors/registry/ui/game/organisms/std-tactics-board-2d.orb +667 -12
  386. package/behaviors/registry/ui/game/organisms/std-tactics-board-3d.orb +707 -8
  387. package/behaviors/registry/ui/game/organisms/std-worldmap-board-2d.orb +506 -6
  388. package/behaviors/registry/ui/game/templates/ui-game-shell.orb +115 -1
  389. package/behaviors/registry/ui/learning/atoms/std-learn-arrangement.orb +201 -1
  390. package/behaviors/registry/ui/learning/atoms/std-learn-classify.orb +325 -1
  391. package/behaviors/registry/ui/learning/atoms/std-learn-compare.orb +108 -1
  392. package/behaviors/registry/ui/learning/atoms/std-learn-coupled-sim.orb +147 -1
  393. package/behaviors/registry/ui/learning/atoms/std-learn-derivation.orb +190 -1
  394. package/behaviors/registry/ui/learning/atoms/std-learn-diagram.orb +111 -1
  395. package/behaviors/registry/ui/learning/atoms/std-learn-doser.orb +164 -1
  396. package/behaviors/registry/ui/learning/atoms/std-learn-estimate.orb +105 -1
  397. package/behaviors/registry/ui/learning/atoms/std-learn-fx-cues.orb +169 -1
  398. package/behaviors/registry/ui/learning/atoms/std-learn-goal-seek.orb +128 -1
  399. package/behaviors/registry/ui/learning/atoms/std-learn-grid-sim.orb +123 -2
  400. package/behaviors/registry/ui/learning/atoms/std-learn-hotspot.orb +178 -1
  401. package/behaviors/registry/ui/learning/atoms/std-learn-live-sim.orb +105 -1
  402. package/behaviors/registry/ui/learning/atoms/std-learn-measure.orb +145 -1
  403. package/behaviors/registry/ui/learning/atoms/std-learn-param-explorer.orb +100 -1
  404. package/behaviors/registry/ui/learning/atoms/std-learn-perturb.orb +133 -1
  405. package/behaviors/registry/ui/learning/atoms/std-learn-predict.orb +247 -1
  406. package/behaviors/registry/ui/learning/atoms/std-learn-sample-accumulator.orb +180 -1
  407. package/behaviors/registry/ui/learning/atoms/std-learn-sandbox.orb +135 -1
  408. package/behaviors/registry/ui/learning/atoms/std-learn-scatter-fit.orb +206 -1
  409. package/behaviors/registry/ui/learning/atoms/std-learn-scenario.orb +129 -1
  410. package/behaviors/registry/ui/learning/atoms/std-learn-sim-3d.orb +53 -0
  411. package/behaviors/registry/ui/learning/atoms/std-learn-slope-probe.orb +168 -8
  412. package/behaviors/registry/ui/learning/atoms/std-learn-speed-drill.orb +135 -1
  413. package/behaviors/registry/ui/learning/atoms/std-learn-stepper.orb +254 -1
  414. package/behaviors/registry/ui/learning/atoms/std-learn-tour-3d.orb +315 -1
  415. package/behaviors/registry/ui/learning/atoms/std-learn-trace-player.orb +131 -1
  416. package/behaviors/registry/ui/learning/atoms/std-learn-transport.orb +57 -0
  417. package/behaviors/registry/ui/learning/atoms/std-learn-tree.orb +214 -1
  418. package/behaviors/registry/ui/learning/atoms/ui-algo-graph-canvas.orb +6 -0
  419. package/behaviors/registry/ui/learning/atoms/ui-algorithm-canvas.orb +6 -0
  420. package/behaviors/registry/ui/learning/atoms/ui-biology-canvas.orb +6 -0
  421. package/behaviors/registry/ui/learning/atoms/ui-chemistry-canvas.orb +6 -0
  422. package/behaviors/registry/ui/learning/atoms/ui-learning-canvas.orb +6 -0
  423. package/behaviors/registry/ui/learning/atoms/ui-math-canvas.orb +6 -0
  424. package/behaviors/registry/ui/learning/atoms/ui-physics-canvas.orb +6 -0
  425. package/behaviors/registry/ui/marketing/atoms/std-marketing-article.orb +1 -2
  426. package/behaviors/registry/ui/marketing/atoms/std-marketing-cta.orb +14 -0
  427. package/behaviors/registry/ui/marketing/atoms/std-marketing-features.orb +37 -1
  428. package/behaviors/registry/ui/marketing/atoms/std-marketing-footer.orb +52 -2
  429. package/behaviors/registry/ui/marketing/atoms/std-marketing-hero.orb +14 -0
  430. package/behaviors/registry/ui/marketing/atoms/std-marketing-nav.orb +25 -1
  431. package/behaviors/registry/ui/marketing/atoms/std-marketing-pricing.orb +59 -1
  432. package/behaviors/registry/ui/marketing/atoms/std-marketing-showcase.orb +62 -1
  433. package/behaviors/registry/ui/marketing/atoms/std-marketing-split.orb +1 -2
  434. package/behaviors/registry/ui/marketing/atoms/std-marketing-stats.orb +15 -2
  435. package/behaviors/registry/ui/marketing/atoms/std-marketing-steps.orb +28 -2
  436. package/behaviors/registry/ui/marketing/atoms/std-marketing-team.orb +33 -2
  437. package/behaviors/registry/ui/marketing/atoms/ui-animated-counter.orb +6 -0
  438. package/behaviors/registry/ui/marketing/atoms/ui-animated-graphic.orb +6 -0
  439. package/behaviors/registry/ui/marketing/atoms/ui-animated-reveal.orb +6 -0
  440. package/behaviors/registry/ui/marketing/atoms/ui-article-section.orb +6 -0
  441. package/behaviors/registry/ui/marketing/atoms/ui-case-study-card.orb +6 -0
  442. package/behaviors/registry/ui/marketing/atoms/ui-community-links.orb +6 -0
  443. package/behaviors/registry/ui/marketing/atoms/ui-content-section.orb +6 -0
  444. package/behaviors/registry/ui/marketing/atoms/ui-cta-banner.orb +6 -0
  445. package/behaviors/registry/ui/marketing/atoms/ui-feature-card.orb +6 -0
  446. package/behaviors/registry/ui/marketing/atoms/ui-geometric-pattern.orb +6 -0
  447. package/behaviors/registry/ui/marketing/atoms/ui-hero-section.orb +6 -0
  448. package/behaviors/registry/ui/marketing/atoms/ui-install-box.orb +6 -0
  449. package/behaviors/registry/ui/marketing/atoms/ui-marketing-footer.orb +6 -0
  450. package/behaviors/registry/ui/marketing/atoms/ui-marketing-stat-card.orb +6 -0
  451. package/behaviors/registry/ui/marketing/atoms/ui-pattern-tile.orb +6 -0
  452. package/behaviors/registry/ui/marketing/atoms/ui-pricing-card.orb +6 -0
  453. package/behaviors/registry/ui/marketing/atoms/ui-pricing-grid.orb +6 -0
  454. package/behaviors/registry/ui/marketing/atoms/ui-pull-quote.orb +6 -0
  455. package/behaviors/registry/ui/marketing/atoms/ui-service-catalog.orb +6 -0
  456. package/behaviors/registry/ui/marketing/atoms/ui-showcase-card.orb +6 -0
  457. package/behaviors/registry/ui/marketing/atoms/ui-split-section.orb +6 -0
  458. package/behaviors/registry/ui/marketing/atoms/ui-stats-grid.orb +6 -0
  459. package/behaviors/registry/ui/marketing/atoms/ui-step-flow.orb +6 -0
  460. package/behaviors/registry/ui/marketing/atoms/ui-tag-cloud.orb +6 -0
  461. package/behaviors/registry/ui/marketing/atoms/ui-team-card.orb +6 -0
  462. package/behaviors/registry/ui/marketing/organisms/ui-book-chapter-view.orb +10 -0
  463. package/behaviors/registry/ui/marketing/organisms/ui-book-cover-page.orb +6 -0
  464. package/behaviors/registry/ui/marketing/organisms/ui-book-nav-bar.orb +6 -0
  465. package/behaviors/registry/ui/marketing/organisms/ui-book-table-of-contents.orb +10 -0
  466. package/behaviors/registry/ui/marketing/organisms/ui-book-viewer.orb +10 -0
  467. package/behaviors/registry/ui/marketing/organisms/ui-case-study-organism.orb +10 -0
  468. package/behaviors/registry/ui/marketing/organisms/ui-feature-grid-organism.orb +10 -0
  469. package/behaviors/registry/ui/marketing/organisms/ui-hero-organism.orb +10 -0
  470. package/behaviors/registry/ui/marketing/organisms/ui-pricing-organism.orb +10 -0
  471. package/behaviors/registry/ui/marketing/organisms/ui-showcase-organism.orb +10 -0
  472. package/behaviors/registry/ui/marketing/organisms/ui-stats-organism.orb +10 -0
  473. package/behaviors/registry/ui/marketing/organisms/ui-step-flow-organism.orb +10 -0
  474. package/behaviors/registry/ui/marketing/organisms/ui-team-organism.orb +10 -0
  475. package/behaviors/registry/ui/marketing/templates/ui-about-page-template.orb +10 -0
  476. package/behaviors/registry/ui/marketing/templates/ui-auth-layout.orb +6 -0
  477. package/behaviors/registry/ui/marketing/templates/ui-feature-detail-page-template.orb +10 -0
  478. package/behaviors/registry/ui/marketing/templates/ui-landing-page-template.orb +10 -0
  479. package/behaviors/registry/ui/marketing/templates/ui-pricing-page-template.orb +10 -0
  480. package/dist/behaviors/exports-reader.js +7542 -2555
  481. package/dist/behaviors/functions/index.d.ts +161 -106
  482. package/dist/behaviors/functions/index.js +7539 -2553
  483. package/dist/behaviors/index.d.ts +1 -1
  484. package/dist/behaviors/index.js +7543 -2556
  485. package/dist/behaviors/query.d.ts +6 -0
  486. package/dist/behaviors/query.js +7542 -2555
  487. package/dist/behaviors-embeddings.hash.json +3 -3
  488. package/dist/behaviors-embeddings.json +29 -29
  489. package/dist/behaviors-registry.json +11423 -827
  490. package/dist/index.d.ts +1 -1
  491. package/dist/index.js +7543 -2556
  492. package/dist/knob-embeddings.hash.json +3 -3
  493. package/dist/knob-embeddings.json +1 -1
  494. package/dist/registry/factory-signatures.json +1 -1
  495. package/package.json +2 -2
  496. package/behaviors/lolo/ui/game/atoms/std-game-design-sheet.lolo +0 -69
  497. package/behaviors/registry/ui/game/atoms/std-game-design-sheet.orb +0 -527
@@ -0,0 +1,2075 @@
1
+ {
2
+ "description": "Platformer + puzzle genre substrate organism. Composes the standard authorities — platformer-body, pickup, objective-flow, choice-gate, fx-particles, fx-narrative, tutorial-overlay — and enforces five trait-typed pillar slots: agency, challenge, goal, reward, feedback. Levels consume this organism, fill every slot with a local rebinding trait, and add their own geometry, render, and math rules. Math targets and grade levels stay downstream in the domain package; this substrate is domain-agnostic.",
3
+ "ledger": {
4
+ "entries": {
5
+ "ent_01M1P1PWCGZ32KZGR7NPPHHH8A": {
6
+ "bakedName": "PlatformerPuzzleData",
7
+ "curName": "PlatformerPuzzleData",
8
+ "id": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A",
9
+ "kind": "entity",
10
+ "owner": "workspace",
11
+ "renames": []
12
+ },
13
+ "evt_01M1P1PWCGCA0B2M2TKRGMCY69": {
14
+ "bakedName": "INIT",
15
+ "curName": "INIT",
16
+ "id": "evt_01M1P1PWCGCA0B2M2TKRGMCY69",
17
+ "kind": "event",
18
+ "owner": "workspace",
19
+ "parent": "trt_01M1P1PWCGWTGVDSK6G3F1DRAF",
20
+ "renames": []
21
+ },
22
+ "evt_01M1P1PWCGP4ZME1SNAC1FTXY8": {
23
+ "bakedName": "INIT",
24
+ "curName": "INIT",
25
+ "id": "evt_01M1P1PWCGP4ZME1SNAC1FTXY8",
26
+ "kind": "event",
27
+ "owner": "workspace",
28
+ "parent": "trt_01M1P1PWCGMYPY7PBYVE2D8RSP",
29
+ "renames": []
30
+ },
31
+ "orb_01M1P1PWCGCTCEX18N27Z786TC": {
32
+ "bakedName": "PlatformerPuzzleOrbital",
33
+ "curName": "PlatformerPuzzleOrbital",
34
+ "id": "orb_01M1P1PWCGCTCEX18N27Z786TC",
35
+ "kind": "orbital",
36
+ "owner": "workspace",
37
+ "renames": []
38
+ },
39
+ "pag_01M1P1PWCGN855SPWEAF4WTN2N": {
40
+ "bakedName": "PlatformerPuzzlePage",
41
+ "curName": "PlatformerPuzzlePage",
42
+ "id": "pag_01M1P1PWCGN855SPWEAF4WTN2N",
43
+ "kind": "page",
44
+ "owner": "workspace",
45
+ "renames": []
46
+ },
47
+ "trt_01M1P1PWCG0XJVK4S43DZ77B40": {
48
+ "bakedName": "PlatformerPuzzleNarrative",
49
+ "curName": "PlatformerPuzzleNarrative",
50
+ "id": "trt_01M1P1PWCG0XJVK4S43DZ77B40",
51
+ "kind": "trait",
52
+ "owner": "workspace",
53
+ "renames": []
54
+ },
55
+ "trt_01M1P1PWCG43Y342XV5PWGZ6S6": {
56
+ "bakedName": "PlatformerPuzzleBody",
57
+ "curName": "PlatformerPuzzleBody",
58
+ "id": "trt_01M1P1PWCG43Y342XV5PWGZ6S6",
59
+ "kind": "trait",
60
+ "owner": "workspace",
61
+ "renames": []
62
+ },
63
+ "trt_01M1P1PWCG635RBW7TY3DAXKFN": {
64
+ "bakedName": "PlatformerPuzzleChoice",
65
+ "curName": "PlatformerPuzzleChoice",
66
+ "id": "trt_01M1P1PWCG635RBW7TY3DAXKFN",
67
+ "kind": "trait",
68
+ "owner": "workspace",
69
+ "renames": []
70
+ },
71
+ "trt_01M1P1PWCG8G3Z3YWQJ5WQWJRZ": {
72
+ "bakedName": "PlatformerPuzzlePickup",
73
+ "curName": "PlatformerPuzzlePickup",
74
+ "id": "trt_01M1P1PWCG8G3Z3YWQJ5WQWJRZ",
75
+ "kind": "trait",
76
+ "owner": "workspace",
77
+ "renames": []
78
+ },
79
+ "trt_01M1P1PWCGMYPY7PBYVE2D8RSP": {
80
+ "bakedName": "PlatformerPuzzle",
81
+ "curName": "PlatformerPuzzle",
82
+ "id": "trt_01M1P1PWCGMYPY7PBYVE2D8RSP",
83
+ "kind": "trait",
84
+ "owner": "workspace",
85
+ "renames": []
86
+ },
87
+ "trt_01M1P1PWCGQWT8KN8HPR80C3P5": {
88
+ "bakedName": "PlatformerPuzzleObjective",
89
+ "curName": "PlatformerPuzzleObjective",
90
+ "id": "trt_01M1P1PWCGQWT8KN8HPR80C3P5",
91
+ "kind": "trait",
92
+ "owner": "workspace",
93
+ "renames": []
94
+ },
95
+ "trt_01M1P1PWCGWTGVDSK6G3F1DRAF": {
96
+ "bakedName": "PlatformerPuzzleNoopPreview",
97
+ "curName": "PlatformerPuzzleNoopPreview",
98
+ "id": "trt_01M1P1PWCGWTGVDSK6G3F1DRAF",
99
+ "kind": "trait",
100
+ "owner": "workspace",
101
+ "renames": []
102
+ },
103
+ "trt_01M1P1PWCGWV0WYY1GT1DKE4PX": {
104
+ "bakedName": "PlatformerPuzzleFx",
105
+ "curName": "PlatformerPuzzleFx",
106
+ "id": "trt_01M1P1PWCGWV0WYY1GT1DKE4PX",
107
+ "kind": "trait",
108
+ "owner": "workspace",
109
+ "renames": []
110
+ },
111
+ "trt_01M1P1PWCGYFE78J2FGK45GQFA": {
112
+ "bakedName": "PlatformerPuzzleTutorial",
113
+ "curName": "PlatformerPuzzleTutorial",
114
+ "id": "trt_01M1P1PWCGYFE78J2FGK45GQFA",
115
+ "kind": "trait",
116
+ "owner": "workspace",
117
+ "renames": []
118
+ }
119
+ },
120
+ "schemaVersion": 1
121
+ },
122
+ "name": "std-platformer-puzzle",
123
+ "orbitals": [
124
+ {
125
+ "entity": {
126
+ "fields": [
127
+ {
128
+ "name": "id",
129
+ "required": true,
130
+ "type": "string"
131
+ },
132
+ {
133
+ "default": {
134
+ "facingRight": true,
135
+ "grounded": false,
136
+ "height": 1.0,
137
+ "vx": 0.0,
138
+ "vy": 0.0,
139
+ "width": 1.0,
140
+ "x": 0.0,
141
+ "y": 0.0
142
+ },
143
+ "name": "body",
144
+ "properties": {
145
+ "facingRight": {
146
+ "name": "facingRight",
147
+ "required": false,
148
+ "type": "boolean"
149
+ },
150
+ "grounded": {
151
+ "name": "grounded",
152
+ "required": false,
153
+ "type": "boolean"
154
+ },
155
+ "height": {
156
+ "name": "height",
157
+ "required": true,
158
+ "type": "number"
159
+ },
160
+ "vx": {
161
+ "name": "vx",
162
+ "required": false,
163
+ "type": "number"
164
+ },
165
+ "vy": {
166
+ "name": "vy",
167
+ "required": false,
168
+ "type": "number"
169
+ },
170
+ "width": {
171
+ "name": "width",
172
+ "required": true,
173
+ "type": "number"
174
+ },
175
+ "x": {
176
+ "name": "x",
177
+ "required": true,
178
+ "type": "number"
179
+ },
180
+ "y": {
181
+ "name": "y",
182
+ "required": true,
183
+ "type": "number"
184
+ }
185
+ },
186
+ "type": "object"
187
+ },
188
+ {
189
+ "default": false,
190
+ "name": "fell",
191
+ "type": "boolean"
192
+ },
193
+ {
194
+ "default": "",
195
+ "name": "hazardId",
196
+ "type": "string"
197
+ },
198
+ {
199
+ "default": "",
200
+ "name": "goalId",
201
+ "type": "string"
202
+ },
203
+ {
204
+ "default": false,
205
+ "name": "skating",
206
+ "type": "boolean"
207
+ },
208
+ {
209
+ "default": [],
210
+ "items": {
211
+ "properties": {
212
+ "a": {
213
+ "name": "a",
214
+ "required": true,
215
+ "type": "number"
216
+ },
217
+ "b": {
218
+ "name": "b",
219
+ "required": false,
220
+ "type": "number"
221
+ },
222
+ "h": {
223
+ "name": "h",
224
+ "required": true,
225
+ "type": "number"
226
+ },
227
+ "k": {
228
+ "name": "k",
229
+ "required": true,
230
+ "type": "number"
231
+ },
232
+ "x0": {
233
+ "name": "x0",
234
+ "required": true,
235
+ "type": "number"
236
+ },
237
+ "x1": {
238
+ "name": "x1",
239
+ "required": true,
240
+ "type": "number"
241
+ }
242
+ },
243
+ "type": "object"
244
+ },
245
+ "name": "curveMods",
246
+ "type": "array"
247
+ },
248
+ {
249
+ "default": {},
250
+ "name": "tuning",
251
+ "properties": {
252
+ "gravity": {
253
+ "name": "gravity",
254
+ "required": false,
255
+ "type": "number"
256
+ },
257
+ "jumpStrength": {
258
+ "name": "jumpStrength",
259
+ "required": false,
260
+ "type": "number"
261
+ },
262
+ "moveSpeed": {
263
+ "name": "moveSpeed",
264
+ "required": false,
265
+ "type": "number"
266
+ }
267
+ },
268
+ "type": "object"
269
+ },
270
+ {
271
+ "default": [],
272
+ "items": {
273
+ "properties": {
274
+ "collected": {
275
+ "name": "collected",
276
+ "required": false,
277
+ "type": "boolean"
278
+ },
279
+ "glyph": {
280
+ "name": "glyph",
281
+ "required": false,
282
+ "type": "string"
283
+ },
284
+ "id": {
285
+ "name": "id",
286
+ "required": true,
287
+ "type": "string"
288
+ },
289
+ "kind": {
290
+ "name": "kind",
291
+ "required": true,
292
+ "type": "string"
293
+ },
294
+ "message": {
295
+ "name": "message",
296
+ "required": false,
297
+ "type": "string"
298
+ },
299
+ "x": {
300
+ "name": "x",
301
+ "required": true,
302
+ "type": "number"
303
+ },
304
+ "y": {
305
+ "name": "y",
306
+ "required": true,
307
+ "type": "number"
308
+ }
309
+ },
310
+ "type": "object"
311
+ },
312
+ "name": "pickups",
313
+ "type": "array"
314
+ },
315
+ {
316
+ "default": false,
317
+ "name": "pickupCompleted",
318
+ "type": "boolean"
319
+ },
320
+ {
321
+ "default": 0.0,
322
+ "name": "total",
323
+ "type": "number"
324
+ },
325
+ {
326
+ "default": [],
327
+ "items": {
328
+ "properties": {
329
+ "chosen": {
330
+ "name": "chosen",
331
+ "required": false,
332
+ "type": "string"
333
+ },
334
+ "hint": {
335
+ "name": "hint",
336
+ "required": false,
337
+ "type": "string"
338
+ },
339
+ "id": {
340
+ "name": "id",
341
+ "required": true,
342
+ "type": "string"
343
+ },
344
+ "options": {
345
+ "items": {
346
+ "properties": {
347
+ "correct": {
348
+ "name": "correct",
349
+ "required": true,
350
+ "type": "boolean"
351
+ },
352
+ "dx": {
353
+ "name": "dx",
354
+ "required": true,
355
+ "type": "number"
356
+ },
357
+ "id": {
358
+ "name": "id",
359
+ "required": true,
360
+ "type": "string"
361
+ },
362
+ "label": {
363
+ "name": "label",
364
+ "required": true,
365
+ "type": "string"
366
+ }
367
+ },
368
+ "type": "object"
369
+ },
370
+ "name": "options",
371
+ "required": true,
372
+ "type": "array"
373
+ },
374
+ "solved": {
375
+ "name": "solved",
376
+ "required": false,
377
+ "type": "boolean"
378
+ },
379
+ "x": {
380
+ "name": "x",
381
+ "required": true,
382
+ "type": "number"
383
+ },
384
+ "y": {
385
+ "name": "y",
386
+ "required": true,
387
+ "type": "number"
388
+ }
389
+ },
390
+ "type": "object"
391
+ },
392
+ "name": "choices",
393
+ "type": "array"
394
+ },
395
+ {
396
+ "default": "none",
397
+ "name": "result",
398
+ "type": "string"
399
+ },
400
+ {
401
+ "default": [],
402
+ "items": {
403
+ "properties": {
404
+ "animation": {
405
+ "name": "animation",
406
+ "required": false,
407
+ "type": "string"
408
+ },
409
+ "bornAt": {
410
+ "name": "bornAt",
411
+ "required": false,
412
+ "type": "number"
413
+ },
414
+ "color": {
415
+ "name": "color",
416
+ "required": false,
417
+ "type": "string"
418
+ },
419
+ "effect": {
420
+ "name": "effect",
421
+ "required": false,
422
+ "type": "string"
423
+ },
424
+ "id": {
425
+ "name": "id",
426
+ "required": true,
427
+ "type": "string"
428
+ },
429
+ "maxTtl": {
430
+ "name": "maxTtl",
431
+ "required": false,
432
+ "type": "number"
433
+ },
434
+ "message": {
435
+ "name": "message",
436
+ "required": false,
437
+ "type": "string"
438
+ },
439
+ "particleCount": {
440
+ "name": "particleCount",
441
+ "required": false,
442
+ "type": "number"
443
+ },
444
+ "size": {
445
+ "name": "size",
446
+ "required": false,
447
+ "type": "number"
448
+ },
449
+ "space": {
450
+ "name": "space",
451
+ "required": false,
452
+ "type": "string"
453
+ },
454
+ "ttl": {
455
+ "name": "ttl",
456
+ "required": true,
457
+ "type": "number"
458
+ },
459
+ "type": {
460
+ "name": "type",
461
+ "required": true,
462
+ "type": "string"
463
+ },
464
+ "vx": {
465
+ "name": "vx",
466
+ "required": false,
467
+ "type": "number"
468
+ },
469
+ "vy": {
470
+ "name": "vy",
471
+ "required": false,
472
+ "type": "number"
473
+ },
474
+ "vz": {
475
+ "name": "vz",
476
+ "required": false,
477
+ "type": "number"
478
+ },
479
+ "x": {
480
+ "name": "x",
481
+ "required": true,
482
+ "type": "number"
483
+ },
484
+ "y": {
485
+ "name": "y",
486
+ "required": false,
487
+ "type": "number"
488
+ },
489
+ "z": {
490
+ "name": "z",
491
+ "required": false,
492
+ "type": "number"
493
+ }
494
+ },
495
+ "type": "object"
496
+ },
497
+ "name": "fx",
498
+ "type": "array"
499
+ },
500
+ {
501
+ "default": 0.0,
502
+ "name": "narrativeSeq",
503
+ "type": "number"
504
+ },
505
+ {
506
+ "default": "",
507
+ "name": "lastNarrative",
508
+ "type": "string"
509
+ },
510
+ {
511
+ "default": 0.0,
512
+ "name": "step",
513
+ "type": "number"
514
+ },
515
+ {
516
+ "default": false,
517
+ "name": "done",
518
+ "type": "boolean"
519
+ },
520
+ {
521
+ "default": 0.0,
522
+ "name": "score",
523
+ "type": "number"
524
+ },
525
+ {
526
+ "default": 3.0,
527
+ "name": "lives",
528
+ "type": "number"
529
+ },
530
+ {
531
+ "default": 1.0,
532
+ "name": "objectivesLeft",
533
+ "type": "number"
534
+ },
535
+ {
536
+ "default": false,
537
+ "name": "celebrated",
538
+ "type": "boolean"
539
+ }
540
+ ],
541
+ "id": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A",
542
+ "name": "PlatformerPuzzleData",
543
+ "persistence": "runtime",
544
+ "shared": true
545
+ },
546
+ "id": "orb_01M1P1PWCGCTCEX18N27Z786TC",
547
+ "name": "PlatformerPuzzleOrbital",
548
+ "pages": [
549
+ {
550
+ "id": "pag_01M1P1PWCGN855SPWEAF4WTN2N",
551
+ "name": "PlatformerPuzzlePage",
552
+ "path": "/platformer-puzzle",
553
+ "traits": [
554
+ {
555
+ "ref": "PlatformerPuzzleBody",
556
+ "refId": "trt_01M1P1PWCG43Y342XV5PWGZ6S6"
557
+ },
558
+ {
559
+ "ref": "PlatformerPuzzlePickup",
560
+ "refId": "trt_01M1P1PWCG8G3Z3YWQJ5WQWJRZ"
561
+ },
562
+ {
563
+ "ref": "PlatformerPuzzleObjective",
564
+ "refId": "trt_01M1P1PWCGQWT8KN8HPR80C3P5"
565
+ },
566
+ {
567
+ "ref": "PlatformerPuzzleChoice",
568
+ "refId": "trt_01M1P1PWCG635RBW7TY3DAXKFN"
569
+ },
570
+ {
571
+ "ref": "PlatformerPuzzleFx",
572
+ "refId": "trt_01M1P1PWCGWV0WYY1GT1DKE4PX"
573
+ },
574
+ {
575
+ "ref": "PlatformerPuzzleNarrative",
576
+ "refId": "trt_01M1P1PWCG0XJVK4S43DZ77B40"
577
+ },
578
+ {
579
+ "ref": "PlatformerPuzzleTutorial",
580
+ "refId": "trt_01M1P1PWCGYFE78J2FGK45GQFA"
581
+ },
582
+ {
583
+ "ref": "PlatformerPuzzle",
584
+ "refId": "trt_01M1P1PWCGMYPY7PBYVE2D8RSP"
585
+ }
586
+ ]
587
+ }
588
+ ],
589
+ "traits": [
590
+ {
591
+ "config": {
592
+ "running": {
593
+ "default": true,
594
+ "type": "unknown"
595
+ }
596
+ },
597
+ "events": {
598
+ "BODY_FELL": "BODY_FELL",
599
+ "BODY_GOAL": "BODY_GOAL",
600
+ "BODY_HAZARD": "BODY_HAZARD",
601
+ "BODY_JUMPED": "BODY_JUMPED",
602
+ "BODY_LANDED": "BODY_LANDED",
603
+ "BODY_MOVED": "BODY_MOVED",
604
+ "BODY_SKATE_END": "BODY_SKATE_END",
605
+ "BODY_SKATE_START": "BODY_SKATE_START",
606
+ "CURVE_MOD_ADD": "CURVE_MOD_ADD",
607
+ "CURVE_MOD_CLEAR": "CURVE_MOD_CLEAR",
608
+ "JUMP": "JUMP",
609
+ "PLACE": "PLACE",
610
+ "SET_TUNING": "SET_TUNING",
611
+ "STEER": "STEER"
612
+ },
613
+ "id": "trt_01M1P1PWCG43Y342XV5PWGZ6S6",
614
+ "linkedEntity": "PlatformerPuzzleData",
615
+ "linkedEntityId": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A",
616
+ "name": "PlatformerPuzzleBody",
617
+ "ref": "Body.traits.PlatformerBody"
618
+ },
619
+ {
620
+ "config": {
621
+ "running": {
622
+ "default": true,
623
+ "type": "unknown"
624
+ }
625
+ },
626
+ "events": {
627
+ "BODY_MOVED": "BODY_MOVED"
628
+ },
629
+ "id": "trt_01M1P1PWCG8G3Z3YWQJ5WQWJRZ",
630
+ "linkedEntity": "PlatformerPuzzleData",
631
+ "linkedEntityId": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A",
632
+ "name": "PlatformerPuzzlePickup",
633
+ "ref": "Pickup.traits.Pickup"
634
+ },
635
+ {
636
+ "config": {
637
+ "running": {
638
+ "default": true,
639
+ "type": "unknown"
640
+ }
641
+ },
642
+ "events": {
643
+ "GAME_END": "GAME_END",
644
+ "PROGRESS": "PROGRESS"
645
+ },
646
+ "id": "trt_01M1P1PWCGQWT8KN8HPR80C3P5",
647
+ "linkedEntity": "PlatformerPuzzleData",
648
+ "linkedEntityId": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A",
649
+ "name": "PlatformerPuzzleObjective",
650
+ "ref": "Gate.traits.ObjectiveFlow"
651
+ },
652
+ {
653
+ "config": {
654
+ "running": {
655
+ "default": true,
656
+ "type": "unknown"
657
+ }
658
+ },
659
+ "events": {
660
+ "BODY_MOVED": "BODY_MOVED"
661
+ },
662
+ "id": "trt_01M1P1PWCG635RBW7TY3DAXKFN",
663
+ "linkedEntity": "PlatformerPuzzleData",
664
+ "linkedEntityId": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A",
665
+ "name": "PlatformerPuzzleChoice",
666
+ "ref": "Choice.traits.ChoiceGate"
667
+ },
668
+ {
669
+ "config": {
670
+ "running": {
671
+ "default": true,
672
+ "type": "unknown"
673
+ }
674
+ },
675
+ "events": {
676
+ "BURST": "BURST"
677
+ },
678
+ "id": "trt_01M1P1PWCGWV0WYY1GT1DKE4PX",
679
+ "linkedEntity": "PlatformerPuzzleData",
680
+ "linkedEntityId": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A",
681
+ "name": "PlatformerPuzzleFx",
682
+ "ref": "Particles.traits.FxParticles"
683
+ },
684
+ {
685
+ "config": {
686
+ "running": {
687
+ "default": true,
688
+ "type": "unknown"
689
+ }
690
+ },
691
+ "events": {
692
+ "BURST": "BURST",
693
+ "NARRATE": "NARRATE"
694
+ },
695
+ "id": "trt_01M1P1PWCG0XJVK4S43DZ77B40",
696
+ "linkedEntity": "PlatformerPuzzleData",
697
+ "linkedEntityId": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A",
698
+ "name": "PlatformerPuzzleNarrative",
699
+ "ref": "Narrative.traits.FxNarrative"
700
+ },
701
+ {
702
+ "config": {
703
+ "autoShow": {
704
+ "default": false,
705
+ "type": "unknown"
706
+ },
707
+ "previewTrait": {
708
+ "default": "@trait.PlatformerPuzzleNoopPreview",
709
+ "type": "unknown"
710
+ }
711
+ },
712
+ "events": {
713
+ "SHOW": "SHOW",
714
+ "TUTORIAL_DONE": "TUTORIAL_DONE"
715
+ },
716
+ "id": "trt_01M1P1PWCGYFE78J2FGK45GQFA",
717
+ "linkedEntity": "PlatformerPuzzleData",
718
+ "linkedEntityId": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A",
719
+ "name": "PlatformerPuzzleTutorial",
720
+ "ref": "Tutorial.traits.TutorialOverlay"
721
+ },
722
+ {
723
+ "category": "interaction",
724
+ "effectRow": [
725
+ {
726
+ "kind": "render-ui",
727
+ "resource": "overlay"
728
+ }
729
+ ],
730
+ "entityRefIds": {
731
+ "PlatformerPuzzleData": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A"
732
+ },
733
+ "id": "trt_01M1P1PWCGWTGVDSK6G3F1DRAF",
734
+ "linkedEntity": "PlatformerPuzzleData",
735
+ "linkedEntityId": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A",
736
+ "name": "PlatformerPuzzleNoopPreview",
737
+ "scope": "instance",
738
+ "stateMachine": {
739
+ "events": [
740
+ {
741
+ "id": "evt_01M1P1PWCGCA0B2M2TKRGMCY69",
742
+ "key": "INIT",
743
+ "name": "Initialize"
744
+ }
745
+ ],
746
+ "states": [
747
+ {
748
+ "isInitial": true,
749
+ "name": "idle"
750
+ }
751
+ ],
752
+ "transitions": [
753
+ {
754
+ "effects": [
755
+ [
756
+ "render-ui",
757
+ "overlay",
758
+ null
759
+ ]
760
+ ],
761
+ "event": "INIT",
762
+ "eventId": "evt_01M1P1PWCGCA0B2M2TKRGMCY69",
763
+ "from": "idle",
764
+ "to": "idle"
765
+ }
766
+ ]
767
+ }
768
+ },
769
+ {
770
+ "category": "interaction",
771
+ "config": {
772
+ "agencyTrait": {
773
+ "description": "Trait that provides player verbs and immediate response. Usually a rebinding of std-platformer-body, std-motion-body, or std-hero-nav.",
774
+ "label": "Agency trait",
775
+ "tier": "domain",
776
+ "type": "trait"
777
+ },
778
+ "backgroundAsset": {
779
+ "default": {},
780
+ "description": "Game-shell background panel sprite (theme chrome).",
781
+ "label": "Background Asset",
782
+ "properties": {
783
+ "animations": {
784
+ "items": {
785
+ "type": "string"
786
+ },
787
+ "name": "animations",
788
+ "required": false,
789
+ "type": "array"
790
+ },
791
+ "aspect": {
792
+ "name": "aspect",
793
+ "required": false,
794
+ "type": "string"
795
+ },
796
+ "atlas": {
797
+ "name": "atlas",
798
+ "required": false,
799
+ "type": "string"
800
+ },
801
+ "category": {
802
+ "name": "category",
803
+ "required": false,
804
+ "type": "string"
805
+ },
806
+ "dimension": {
807
+ "name": "dimension",
808
+ "required": false,
809
+ "type": "string"
810
+ },
811
+ "name": {
812
+ "name": "name",
813
+ "required": false,
814
+ "type": "string"
815
+ },
816
+ "role": {
817
+ "name": "role",
818
+ "required": false,
819
+ "type": "string"
820
+ },
821
+ "sprite": {
822
+ "name": "sprite",
823
+ "required": false,
824
+ "type": "string"
825
+ },
826
+ "style": {
827
+ "name": "style",
828
+ "required": false,
829
+ "type": "string"
830
+ },
831
+ "thumbnailUrl": {
832
+ "name": "thumbnailUrl",
833
+ "required": false,
834
+ "type": "string"
835
+ },
836
+ "url": {
837
+ "name": "url",
838
+ "required": false,
839
+ "type": "string"
840
+ },
841
+ "variant": {
842
+ "name": "variant",
843
+ "required": false,
844
+ "type": "string"
845
+ }
846
+ },
847
+ "tier": "presentation",
848
+ "type": "Asset"
849
+ },
850
+ "challengeTrait": {
851
+ "description": "Trait that provides the obstacle, decision, or opposition. Usually a rebinding of std-choice-gate, std-gate-lock, std-patrol-hazard, std-velocity-gate, std-loop-lock, or std-pad-lock.",
852
+ "label": "Challenge trait",
853
+ "tier": "domain",
854
+ "type": "trait"
855
+ },
856
+ "directionAssets": {
857
+ "default": {},
858
+ "description": "D-pad direction icon sprites.",
859
+ "label": "Direction Assets",
860
+ "properties": {
861
+ "down": {
862
+ "name": "down",
863
+ "properties": {
864
+ "animations": {
865
+ "items": {
866
+ "type": "string"
867
+ },
868
+ "name": "animations",
869
+ "required": false,
870
+ "type": "array"
871
+ },
872
+ "aspect": {
873
+ "name": "aspect",
874
+ "required": false,
875
+ "type": "string"
876
+ },
877
+ "atlas": {
878
+ "name": "atlas",
879
+ "required": false,
880
+ "type": "string"
881
+ },
882
+ "category": {
883
+ "name": "category",
884
+ "required": false,
885
+ "type": "string"
886
+ },
887
+ "dimension": {
888
+ "name": "dimension",
889
+ "required": false,
890
+ "type": "string"
891
+ },
892
+ "name": {
893
+ "name": "name",
894
+ "required": false,
895
+ "type": "string"
896
+ },
897
+ "role": {
898
+ "name": "role",
899
+ "required": false,
900
+ "type": "string"
901
+ },
902
+ "sprite": {
903
+ "name": "sprite",
904
+ "required": false,
905
+ "type": "string"
906
+ },
907
+ "style": {
908
+ "name": "style",
909
+ "required": false,
910
+ "type": "string"
911
+ },
912
+ "thumbnailUrl": {
913
+ "name": "thumbnailUrl",
914
+ "required": false,
915
+ "type": "string"
916
+ },
917
+ "url": {
918
+ "name": "url",
919
+ "required": false,
920
+ "type": "string"
921
+ },
922
+ "variant": {
923
+ "name": "variant",
924
+ "required": false,
925
+ "type": "string"
926
+ }
927
+ },
928
+ "required": false,
929
+ "type": "object"
930
+ },
931
+ "left": {
932
+ "name": "left",
933
+ "properties": {
934
+ "animations": {
935
+ "items": {
936
+ "type": "string"
937
+ },
938
+ "name": "animations",
939
+ "required": false,
940
+ "type": "array"
941
+ },
942
+ "aspect": {
943
+ "name": "aspect",
944
+ "required": false,
945
+ "type": "string"
946
+ },
947
+ "atlas": {
948
+ "name": "atlas",
949
+ "required": false,
950
+ "type": "string"
951
+ },
952
+ "category": {
953
+ "name": "category",
954
+ "required": false,
955
+ "type": "string"
956
+ },
957
+ "dimension": {
958
+ "name": "dimension",
959
+ "required": false,
960
+ "type": "string"
961
+ },
962
+ "name": {
963
+ "name": "name",
964
+ "required": false,
965
+ "type": "string"
966
+ },
967
+ "role": {
968
+ "name": "role",
969
+ "required": false,
970
+ "type": "string"
971
+ },
972
+ "sprite": {
973
+ "name": "sprite",
974
+ "required": false,
975
+ "type": "string"
976
+ },
977
+ "style": {
978
+ "name": "style",
979
+ "required": false,
980
+ "type": "string"
981
+ },
982
+ "thumbnailUrl": {
983
+ "name": "thumbnailUrl",
984
+ "required": false,
985
+ "type": "string"
986
+ },
987
+ "url": {
988
+ "name": "url",
989
+ "required": false,
990
+ "type": "string"
991
+ },
992
+ "variant": {
993
+ "name": "variant",
994
+ "required": false,
995
+ "type": "string"
996
+ }
997
+ },
998
+ "required": false,
999
+ "type": "object"
1000
+ },
1001
+ "right": {
1002
+ "name": "right",
1003
+ "properties": {
1004
+ "animations": {
1005
+ "items": {
1006
+ "type": "string"
1007
+ },
1008
+ "name": "animations",
1009
+ "required": false,
1010
+ "type": "array"
1011
+ },
1012
+ "aspect": {
1013
+ "name": "aspect",
1014
+ "required": false,
1015
+ "type": "string"
1016
+ },
1017
+ "atlas": {
1018
+ "name": "atlas",
1019
+ "required": false,
1020
+ "type": "string"
1021
+ },
1022
+ "category": {
1023
+ "name": "category",
1024
+ "required": false,
1025
+ "type": "string"
1026
+ },
1027
+ "dimension": {
1028
+ "name": "dimension",
1029
+ "required": false,
1030
+ "type": "string"
1031
+ },
1032
+ "name": {
1033
+ "name": "name",
1034
+ "required": false,
1035
+ "type": "string"
1036
+ },
1037
+ "role": {
1038
+ "name": "role",
1039
+ "required": false,
1040
+ "type": "string"
1041
+ },
1042
+ "sprite": {
1043
+ "name": "sprite",
1044
+ "required": false,
1045
+ "type": "string"
1046
+ },
1047
+ "style": {
1048
+ "name": "style",
1049
+ "required": false,
1050
+ "type": "string"
1051
+ },
1052
+ "thumbnailUrl": {
1053
+ "name": "thumbnailUrl",
1054
+ "required": false,
1055
+ "type": "string"
1056
+ },
1057
+ "url": {
1058
+ "name": "url",
1059
+ "required": false,
1060
+ "type": "string"
1061
+ },
1062
+ "variant": {
1063
+ "name": "variant",
1064
+ "required": false,
1065
+ "type": "string"
1066
+ }
1067
+ },
1068
+ "required": false,
1069
+ "type": "object"
1070
+ },
1071
+ "up": {
1072
+ "name": "up",
1073
+ "properties": {
1074
+ "animations": {
1075
+ "items": {
1076
+ "type": "string"
1077
+ },
1078
+ "name": "animations",
1079
+ "required": false,
1080
+ "type": "array"
1081
+ },
1082
+ "aspect": {
1083
+ "name": "aspect",
1084
+ "required": false,
1085
+ "type": "string"
1086
+ },
1087
+ "atlas": {
1088
+ "name": "atlas",
1089
+ "required": false,
1090
+ "type": "string"
1091
+ },
1092
+ "category": {
1093
+ "name": "category",
1094
+ "required": false,
1095
+ "type": "string"
1096
+ },
1097
+ "dimension": {
1098
+ "name": "dimension",
1099
+ "required": false,
1100
+ "type": "string"
1101
+ },
1102
+ "name": {
1103
+ "name": "name",
1104
+ "required": false,
1105
+ "type": "string"
1106
+ },
1107
+ "role": {
1108
+ "name": "role",
1109
+ "required": false,
1110
+ "type": "string"
1111
+ },
1112
+ "sprite": {
1113
+ "name": "sprite",
1114
+ "required": false,
1115
+ "type": "string"
1116
+ },
1117
+ "style": {
1118
+ "name": "style",
1119
+ "required": false,
1120
+ "type": "string"
1121
+ },
1122
+ "thumbnailUrl": {
1123
+ "name": "thumbnailUrl",
1124
+ "required": false,
1125
+ "type": "string"
1126
+ },
1127
+ "url": {
1128
+ "name": "url",
1129
+ "required": false,
1130
+ "type": "string"
1131
+ },
1132
+ "variant": {
1133
+ "name": "variant",
1134
+ "required": false,
1135
+ "type": "string"
1136
+ }
1137
+ },
1138
+ "required": false,
1139
+ "type": "object"
1140
+ }
1141
+ },
1142
+ "tier": "presentation",
1143
+ "type": "DirectionAssets"
1144
+ },
1145
+ "feedbackTrait": {
1146
+ "description": "Trait that provides visual, audio, or narrative feedback. Usually a rebinding of std-fx-particles, std-fx-narrative, std-tutorial-overlay, std-audio-cue, or std-zone-card.",
1147
+ "label": "Feedback trait",
1148
+ "tier": "domain",
1149
+ "type": "trait"
1150
+ },
1151
+ "goalTrait": {
1152
+ "description": "Trait that resolves the win condition. Usually a rebinding of std-objective-flow or std-objective-reach.",
1153
+ "label": "Goal trait",
1154
+ "tier": "domain",
1155
+ "type": "trait"
1156
+ },
1157
+ "hudBackgroundAsset": {
1158
+ "default": {},
1159
+ "description": "HUD panel background sprite (theme chrome).",
1160
+ "label": "HUD Background Asset",
1161
+ "properties": {
1162
+ "animations": {
1163
+ "items": {
1164
+ "type": "string"
1165
+ },
1166
+ "name": "animations",
1167
+ "required": false,
1168
+ "type": "array"
1169
+ },
1170
+ "aspect": {
1171
+ "name": "aspect",
1172
+ "required": false,
1173
+ "type": "string"
1174
+ },
1175
+ "atlas": {
1176
+ "name": "atlas",
1177
+ "required": false,
1178
+ "type": "string"
1179
+ },
1180
+ "category": {
1181
+ "name": "category",
1182
+ "required": false,
1183
+ "type": "string"
1184
+ },
1185
+ "dimension": {
1186
+ "name": "dimension",
1187
+ "required": false,
1188
+ "type": "string"
1189
+ },
1190
+ "name": {
1191
+ "name": "name",
1192
+ "required": false,
1193
+ "type": "string"
1194
+ },
1195
+ "role": {
1196
+ "name": "role",
1197
+ "required": false,
1198
+ "type": "string"
1199
+ },
1200
+ "sprite": {
1201
+ "name": "sprite",
1202
+ "required": false,
1203
+ "type": "string"
1204
+ },
1205
+ "style": {
1206
+ "name": "style",
1207
+ "required": false,
1208
+ "type": "string"
1209
+ },
1210
+ "thumbnailUrl": {
1211
+ "name": "thumbnailUrl",
1212
+ "required": false,
1213
+ "type": "string"
1214
+ },
1215
+ "url": {
1216
+ "name": "url",
1217
+ "required": false,
1218
+ "type": "string"
1219
+ },
1220
+ "variant": {
1221
+ "name": "variant",
1222
+ "required": false,
1223
+ "type": "string"
1224
+ }
1225
+ },
1226
+ "tier": "presentation",
1227
+ "type": "Asset"
1228
+ },
1229
+ "rewardTrait": {
1230
+ "description": "Trait that provides collectibles or scoring. Usually a rebinding of std-pickup, std-score, std-xp, or std-gold.",
1231
+ "label": "Reward trait",
1232
+ "tier": "domain",
1233
+ "type": "trait"
1234
+ }
1235
+ },
1236
+ "effectRow": [
1237
+ {
1238
+ "kind": "render-ui",
1239
+ "resource": "main"
1240
+ }
1241
+ ],
1242
+ "entityContract": {
1243
+ "provides": [],
1244
+ "requires": []
1245
+ },
1246
+ "entityRebindable": true,
1247
+ "entityRefIds": {
1248
+ "PlatformerPuzzleData": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A"
1249
+ },
1250
+ "id": "trt_01M1P1PWCGMYPY7PBYVE2D8RSP",
1251
+ "linkedEntity": "PlatformerPuzzleData",
1252
+ "linkedEntityId": "ent_01M1P1PWCGZ32KZGR7NPPHHH8A",
1253
+ "name": "PlatformerPuzzle",
1254
+ "scope": "instance",
1255
+ "stateMachine": {
1256
+ "events": [
1257
+ {
1258
+ "id": "evt_01M1P1PWCGP4ZME1SNAC1FTXY8",
1259
+ "key": "INIT",
1260
+ "name": "Initialize"
1261
+ }
1262
+ ],
1263
+ "states": [
1264
+ {
1265
+ "isInitial": true,
1266
+ "name": "active"
1267
+ }
1268
+ ],
1269
+ "transitions": [
1270
+ {
1271
+ "effects": [
1272
+ [
1273
+ "render-ui",
1274
+ "main",
1275
+ null
1276
+ ]
1277
+ ],
1278
+ "event": "INIT",
1279
+ "eventId": "evt_01M1P1PWCGP4ZME1SNAC1FTXY8",
1280
+ "from": "active",
1281
+ "to": "active"
1282
+ }
1283
+ ]
1284
+ }
1285
+ }
1286
+ ],
1287
+ "types": {
1288
+ "Asset": [
1289
+ {
1290
+ "name": "url",
1291
+ "type": "asset"
1292
+ },
1293
+ {
1294
+ "name": "atlas",
1295
+ "type": "asset"
1296
+ },
1297
+ {
1298
+ "name": "sprite",
1299
+ "type": "string"
1300
+ },
1301
+ {
1302
+ "name": "role",
1303
+ "type": "string"
1304
+ },
1305
+ {
1306
+ "name": "category",
1307
+ "type": "string"
1308
+ },
1309
+ {
1310
+ "name": "animations",
1311
+ "type": "[string]"
1312
+ },
1313
+ {
1314
+ "name": "style",
1315
+ "type": "string"
1316
+ },
1317
+ {
1318
+ "name": "variant",
1319
+ "type": "string"
1320
+ },
1321
+ {
1322
+ "name": "dimension",
1323
+ "type": "string"
1324
+ },
1325
+ {
1326
+ "name": "aspect",
1327
+ "type": "string"
1328
+ },
1329
+ {
1330
+ "name": "name",
1331
+ "type": "string"
1332
+ },
1333
+ {
1334
+ "name": "thumbnailUrl",
1335
+ "type": "string"
1336
+ }
1337
+ ],
1338
+ "BodyDriftRegion": [
1339
+ {
1340
+ "name": "id",
1341
+ "required": true,
1342
+ "type": "string"
1343
+ },
1344
+ {
1345
+ "name": "x0",
1346
+ "required": true,
1347
+ "type": "number"
1348
+ },
1349
+ {
1350
+ "name": "x1",
1351
+ "required": true,
1352
+ "type": "number"
1353
+ },
1354
+ {
1355
+ "name": "y0",
1356
+ "required": true,
1357
+ "type": "number"
1358
+ },
1359
+ {
1360
+ "name": "y1",
1361
+ "required": true,
1362
+ "type": "number"
1363
+ },
1364
+ {
1365
+ "name": "ax",
1366
+ "required": true,
1367
+ "type": "number"
1368
+ },
1369
+ {
1370
+ "name": "ay",
1371
+ "required": true,
1372
+ "type": "number"
1373
+ }
1374
+ ],
1375
+ "ChoiceGate": [
1376
+ {
1377
+ "name": "id",
1378
+ "required": true,
1379
+ "type": "string"
1380
+ },
1381
+ {
1382
+ "name": "x",
1383
+ "required": true,
1384
+ "type": "number"
1385
+ },
1386
+ {
1387
+ "name": "y",
1388
+ "required": true,
1389
+ "type": "number"
1390
+ },
1391
+ {
1392
+ "name": "hint",
1393
+ "type": "string"
1394
+ },
1395
+ {
1396
+ "name": "options",
1397
+ "properties": [
1398
+ {
1399
+ "name": "id",
1400
+ "required": true,
1401
+ "type": "string"
1402
+ },
1403
+ {
1404
+ "name": "dx",
1405
+ "required": true,
1406
+ "type": "number"
1407
+ },
1408
+ {
1409
+ "name": "label",
1410
+ "required": true,
1411
+ "type": "string"
1412
+ },
1413
+ {
1414
+ "name": "correct",
1415
+ "required": true,
1416
+ "type": "boolean"
1417
+ }
1418
+ ],
1419
+ "required": true,
1420
+ "type": "[object]"
1421
+ },
1422
+ {
1423
+ "name": "solved",
1424
+ "type": "boolean"
1425
+ },
1426
+ {
1427
+ "name": "chosen",
1428
+ "type": "string"
1429
+ }
1430
+ ],
1431
+ "ChoiceOption": [
1432
+ {
1433
+ "name": "id",
1434
+ "required": true,
1435
+ "type": "string"
1436
+ },
1437
+ {
1438
+ "name": "dx",
1439
+ "required": true,
1440
+ "type": "number"
1441
+ },
1442
+ {
1443
+ "name": "label",
1444
+ "required": true,
1445
+ "type": "string"
1446
+ },
1447
+ {
1448
+ "name": "correct",
1449
+ "required": true,
1450
+ "type": "boolean"
1451
+ }
1452
+ ],
1453
+ "CurveMod": [
1454
+ {
1455
+ "name": "x0",
1456
+ "required": true,
1457
+ "type": "number"
1458
+ },
1459
+ {
1460
+ "name": "x1",
1461
+ "required": true,
1462
+ "type": "number"
1463
+ },
1464
+ {
1465
+ "name": "a",
1466
+ "required": true,
1467
+ "type": "number"
1468
+ },
1469
+ {
1470
+ "name": "b",
1471
+ "type": "number"
1472
+ },
1473
+ {
1474
+ "name": "h",
1475
+ "required": true,
1476
+ "type": "number"
1477
+ },
1478
+ {
1479
+ "name": "k",
1480
+ "required": true,
1481
+ "type": "number"
1482
+ }
1483
+ ],
1484
+ "DirectionAssets": [
1485
+ {
1486
+ "name": "up",
1487
+ "properties": [
1488
+ {
1489
+ "name": "url",
1490
+ "type": "asset"
1491
+ },
1492
+ {
1493
+ "name": "atlas",
1494
+ "type": "asset"
1495
+ },
1496
+ {
1497
+ "name": "sprite",
1498
+ "type": "string"
1499
+ },
1500
+ {
1501
+ "name": "role",
1502
+ "type": "string"
1503
+ },
1504
+ {
1505
+ "name": "category",
1506
+ "type": "string"
1507
+ },
1508
+ {
1509
+ "name": "animations",
1510
+ "type": "[string]"
1511
+ },
1512
+ {
1513
+ "name": "style",
1514
+ "type": "string"
1515
+ },
1516
+ {
1517
+ "name": "variant",
1518
+ "type": "string"
1519
+ },
1520
+ {
1521
+ "name": "dimension",
1522
+ "type": "string"
1523
+ },
1524
+ {
1525
+ "name": "aspect",
1526
+ "type": "string"
1527
+ },
1528
+ {
1529
+ "name": "name",
1530
+ "type": "string"
1531
+ },
1532
+ {
1533
+ "name": "thumbnailUrl",
1534
+ "type": "string"
1535
+ }
1536
+ ],
1537
+ "type": "object"
1538
+ },
1539
+ {
1540
+ "name": "down",
1541
+ "properties": [
1542
+ {
1543
+ "name": "url",
1544
+ "type": "asset"
1545
+ },
1546
+ {
1547
+ "name": "atlas",
1548
+ "type": "asset"
1549
+ },
1550
+ {
1551
+ "name": "sprite",
1552
+ "type": "string"
1553
+ },
1554
+ {
1555
+ "name": "role",
1556
+ "type": "string"
1557
+ },
1558
+ {
1559
+ "name": "category",
1560
+ "type": "string"
1561
+ },
1562
+ {
1563
+ "name": "animations",
1564
+ "type": "[string]"
1565
+ },
1566
+ {
1567
+ "name": "style",
1568
+ "type": "string"
1569
+ },
1570
+ {
1571
+ "name": "variant",
1572
+ "type": "string"
1573
+ },
1574
+ {
1575
+ "name": "dimension",
1576
+ "type": "string"
1577
+ },
1578
+ {
1579
+ "name": "aspect",
1580
+ "type": "string"
1581
+ },
1582
+ {
1583
+ "name": "name",
1584
+ "type": "string"
1585
+ },
1586
+ {
1587
+ "name": "thumbnailUrl",
1588
+ "type": "string"
1589
+ }
1590
+ ],
1591
+ "type": "object"
1592
+ },
1593
+ {
1594
+ "name": "left",
1595
+ "properties": [
1596
+ {
1597
+ "name": "url",
1598
+ "type": "asset"
1599
+ },
1600
+ {
1601
+ "name": "atlas",
1602
+ "type": "asset"
1603
+ },
1604
+ {
1605
+ "name": "sprite",
1606
+ "type": "string"
1607
+ },
1608
+ {
1609
+ "name": "role",
1610
+ "type": "string"
1611
+ },
1612
+ {
1613
+ "name": "category",
1614
+ "type": "string"
1615
+ },
1616
+ {
1617
+ "name": "animations",
1618
+ "type": "[string]"
1619
+ },
1620
+ {
1621
+ "name": "style",
1622
+ "type": "string"
1623
+ },
1624
+ {
1625
+ "name": "variant",
1626
+ "type": "string"
1627
+ },
1628
+ {
1629
+ "name": "dimension",
1630
+ "type": "string"
1631
+ },
1632
+ {
1633
+ "name": "aspect",
1634
+ "type": "string"
1635
+ },
1636
+ {
1637
+ "name": "name",
1638
+ "type": "string"
1639
+ },
1640
+ {
1641
+ "name": "thumbnailUrl",
1642
+ "type": "string"
1643
+ }
1644
+ ],
1645
+ "type": "object"
1646
+ },
1647
+ {
1648
+ "name": "right",
1649
+ "properties": [
1650
+ {
1651
+ "name": "url",
1652
+ "type": "asset"
1653
+ },
1654
+ {
1655
+ "name": "atlas",
1656
+ "type": "asset"
1657
+ },
1658
+ {
1659
+ "name": "sprite",
1660
+ "type": "string"
1661
+ },
1662
+ {
1663
+ "name": "role",
1664
+ "type": "string"
1665
+ },
1666
+ {
1667
+ "name": "category",
1668
+ "type": "string"
1669
+ },
1670
+ {
1671
+ "name": "animations",
1672
+ "type": "[string]"
1673
+ },
1674
+ {
1675
+ "name": "style",
1676
+ "type": "string"
1677
+ },
1678
+ {
1679
+ "name": "variant",
1680
+ "type": "string"
1681
+ },
1682
+ {
1683
+ "name": "dimension",
1684
+ "type": "string"
1685
+ },
1686
+ {
1687
+ "name": "aspect",
1688
+ "type": "string"
1689
+ },
1690
+ {
1691
+ "name": "name",
1692
+ "type": "string"
1693
+ },
1694
+ {
1695
+ "name": "thumbnailUrl",
1696
+ "type": "string"
1697
+ }
1698
+ ],
1699
+ "type": "object"
1700
+ }
1701
+ ],
1702
+ "Fx": [
1703
+ {
1704
+ "name": "id",
1705
+ "required": true,
1706
+ "type": "string"
1707
+ },
1708
+ {
1709
+ "name": "type",
1710
+ "required": true,
1711
+ "type": "string"
1712
+ },
1713
+ {
1714
+ "name": "x",
1715
+ "required": true,
1716
+ "type": "number"
1717
+ },
1718
+ {
1719
+ "name": "z",
1720
+ "type": "number"
1721
+ },
1722
+ {
1723
+ "name": "y",
1724
+ "type": "number"
1725
+ },
1726
+ {
1727
+ "name": "message",
1728
+ "type": "string"
1729
+ },
1730
+ {
1731
+ "name": "ttl",
1732
+ "required": true,
1733
+ "type": "number"
1734
+ },
1735
+ {
1736
+ "name": "maxTtl",
1737
+ "type": "number"
1738
+ },
1739
+ {
1740
+ "name": "bornAt",
1741
+ "type": "number"
1742
+ },
1743
+ {
1744
+ "name": "space",
1745
+ "type": "string"
1746
+ },
1747
+ {
1748
+ "name": "effect",
1749
+ "type": "string"
1750
+ },
1751
+ {
1752
+ "name": "color",
1753
+ "type": "string"
1754
+ },
1755
+ {
1756
+ "name": "size",
1757
+ "type": "number"
1758
+ },
1759
+ {
1760
+ "name": "vx",
1761
+ "type": "number"
1762
+ },
1763
+ {
1764
+ "name": "vy",
1765
+ "type": "number"
1766
+ },
1767
+ {
1768
+ "name": "vz",
1769
+ "type": "number"
1770
+ },
1771
+ {
1772
+ "name": "particleCount",
1773
+ "type": "number"
1774
+ },
1775
+ {
1776
+ "name": "animation",
1777
+ "type": "string"
1778
+ }
1779
+ ],
1780
+ "FxPreset": [
1781
+ {
1782
+ "name": "type",
1783
+ "required": true,
1784
+ "type": "string"
1785
+ },
1786
+ {
1787
+ "name": "color",
1788
+ "type": "string"
1789
+ },
1790
+ {
1791
+ "name": "color2",
1792
+ "type": "string"
1793
+ },
1794
+ {
1795
+ "name": "size",
1796
+ "type": "number"
1797
+ },
1798
+ {
1799
+ "name": "shape",
1800
+ "type": "string"
1801
+ },
1802
+ {
1803
+ "name": "count",
1804
+ "type": "number"
1805
+ },
1806
+ {
1807
+ "name": "glow",
1808
+ "type": "number"
1809
+ },
1810
+ {
1811
+ "name": "gravity",
1812
+ "type": "number"
1813
+ },
1814
+ {
1815
+ "name": "vx",
1816
+ "type": "number"
1817
+ },
1818
+ {
1819
+ "name": "vy",
1820
+ "type": "number"
1821
+ },
1822
+ {
1823
+ "name": "vz",
1824
+ "type": "number"
1825
+ },
1826
+ {
1827
+ "name": "space",
1828
+ "type": "string"
1829
+ },
1830
+ {
1831
+ "name": "effect",
1832
+ "type": "string"
1833
+ },
1834
+ {
1835
+ "name": "particleCount",
1836
+ "type": "number"
1837
+ },
1838
+ {
1839
+ "name": "animation",
1840
+ "type": "string"
1841
+ }
1842
+ ],
1843
+ "NarrativeCue": [
1844
+ {
1845
+ "name": "text",
1846
+ "required": true,
1847
+ "type": "string"
1848
+ },
1849
+ {
1850
+ "name": "style",
1851
+ "type": "string"
1852
+ },
1853
+ {
1854
+ "name": "x",
1855
+ "type": "number"
1856
+ },
1857
+ {
1858
+ "name": "y",
1859
+ "type": "number"
1860
+ },
1861
+ {
1862
+ "name": "ttl",
1863
+ "type": "number"
1864
+ },
1865
+ {
1866
+ "name": "space",
1867
+ "type": "string"
1868
+ }
1869
+ ],
1870
+ "PickupFeature": [
1871
+ {
1872
+ "name": "id",
1873
+ "required": true,
1874
+ "type": "string"
1875
+ },
1876
+ {
1877
+ "name": "x",
1878
+ "required": true,
1879
+ "type": "number"
1880
+ },
1881
+ {
1882
+ "name": "y",
1883
+ "required": true,
1884
+ "type": "number"
1885
+ },
1886
+ {
1887
+ "name": "kind",
1888
+ "required": true,
1889
+ "type": "string"
1890
+ },
1891
+ {
1892
+ "name": "glyph",
1893
+ "type": "string"
1894
+ },
1895
+ {
1896
+ "name": "message",
1897
+ "type": "string"
1898
+ },
1899
+ {
1900
+ "name": "collected",
1901
+ "type": "boolean"
1902
+ }
1903
+ ],
1904
+ "PlatformerBody": [
1905
+ {
1906
+ "name": "x",
1907
+ "required": true,
1908
+ "type": "number"
1909
+ },
1910
+ {
1911
+ "name": "y",
1912
+ "required": true,
1913
+ "type": "number"
1914
+ },
1915
+ {
1916
+ "name": "width",
1917
+ "required": true,
1918
+ "type": "number"
1919
+ },
1920
+ {
1921
+ "name": "height",
1922
+ "required": true,
1923
+ "type": "number"
1924
+ },
1925
+ {
1926
+ "name": "vx",
1927
+ "type": "number"
1928
+ },
1929
+ {
1930
+ "name": "vy",
1931
+ "type": "number"
1932
+ },
1933
+ {
1934
+ "name": "grounded",
1935
+ "type": "boolean"
1936
+ },
1937
+ {
1938
+ "name": "facingRight",
1939
+ "type": "boolean"
1940
+ }
1941
+ ],
1942
+ "PlatformerCurveSample": [
1943
+ {
1944
+ "name": "x",
1945
+ "required": true,
1946
+ "type": "number"
1947
+ },
1948
+ {
1949
+ "name": "y",
1950
+ "required": true,
1951
+ "type": "number"
1952
+ }
1953
+ ],
1954
+ "PlatformerPlatform": [
1955
+ {
1956
+ "name": "id",
1957
+ "type": "string"
1958
+ },
1959
+ {
1960
+ "name": "x",
1961
+ "required": true,
1962
+ "type": "number"
1963
+ },
1964
+ {
1965
+ "name": "y",
1966
+ "required": true,
1967
+ "type": "number"
1968
+ },
1969
+ {
1970
+ "name": "width",
1971
+ "required": true,
1972
+ "type": "number"
1973
+ },
1974
+ {
1975
+ "name": "height",
1976
+ "required": true,
1977
+ "type": "number"
1978
+ },
1979
+ {
1980
+ "name": "type",
1981
+ "type": "string"
1982
+ }
1983
+ ],
1984
+ "PlatformerTuning": [
1985
+ {
1986
+ "name": "jumpStrength",
1987
+ "type": "number"
1988
+ },
1989
+ {
1990
+ "name": "moveSpeed",
1991
+ "type": "number"
1992
+ },
1993
+ {
1994
+ "name": "gravity",
1995
+ "type": "number"
1996
+ }
1997
+ ],
1998
+ "StyleDef": [
1999
+ {
2000
+ "name": "color",
2001
+ "required": true,
2002
+ "type": "string"
2003
+ },
2004
+ {
2005
+ "name": "size",
2006
+ "required": true,
2007
+ "type": "number"
2008
+ },
2009
+ {
2010
+ "name": "ttl",
2011
+ "required": true,
2012
+ "type": "number"
2013
+ },
2014
+ {
2015
+ "name": "effect",
2016
+ "required": true,
2017
+ "type": "string"
2018
+ }
2019
+ ],
2020
+ "TutorialStep": [
2021
+ {
2022
+ "name": "id",
2023
+ "required": true,
2024
+ "type": "string"
2025
+ },
2026
+ {
2027
+ "name": "title",
2028
+ "required": true,
2029
+ "type": "string"
2030
+ },
2031
+ {
2032
+ "name": "body",
2033
+ "type": "string"
2034
+ },
2035
+ {
2036
+ "name": "demoId",
2037
+ "type": "string"
2038
+ }
2039
+ ]
2040
+ },
2041
+ "uses": [
2042
+ {
2043
+ "as": "Body",
2044
+ "from": "std/behaviors/std-platformer-body"
2045
+ },
2046
+ {
2047
+ "as": "Pickup",
2048
+ "from": "std/behaviors/std-pickup"
2049
+ },
2050
+ {
2051
+ "as": "Gate",
2052
+ "from": "std/behaviors/std-objective-flow"
2053
+ },
2054
+ {
2055
+ "as": "Choice",
2056
+ "from": "std/behaviors/std-choice-gate"
2057
+ },
2058
+ {
2059
+ "as": "Particles",
2060
+ "from": "std/behaviors/std-fx-particles"
2061
+ },
2062
+ {
2063
+ "as": "Narrative",
2064
+ "from": "std/behaviors/std-fx-narrative"
2065
+ },
2066
+ {
2067
+ "as": "Tutorial",
2068
+ "from": "std/behaviors/std-tutorial-overlay"
2069
+ }
2070
+ ]
2071
+ }
2072
+ ],
2073
+ "schemaVersion": 1,
2074
+ "version": "1.0.0"
2075
+ }