@almadar/std 6.5.2 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
{
|
|
39
39
|
"name": "x",
|
|
40
40
|
"type": "number",
|
|
41
|
-
"default": 0
|
|
41
|
+
"default": 0.0
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "y",
|
|
45
45
|
"type": "number",
|
|
46
|
-
"default": 0
|
|
46
|
+
"default": 0.0
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"name": "collisionStatus",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"traits": [
|
|
61
61
|
{
|
|
62
62
|
"name": "CollidableBodyCollision",
|
|
63
|
-
"linkedEntity": "CollidableBody",
|
|
64
63
|
"category": "interaction",
|
|
64
|
+
"linkedEntity": "CollidableBody",
|
|
65
65
|
"stateMachine": {
|
|
66
66
|
"states": [
|
|
67
67
|
{
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"key": "CHECK",
|
|
82
|
-
"name": "Check
|
|
82
|
+
"name": "Check"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
"key": "COLLISION_DETECTED",
|
|
@@ -112,43 +112,41 @@
|
|
|
112
112
|
"gap": "lg",
|
|
113
113
|
"children": [
|
|
114
114
|
{
|
|
115
|
-
"type": "stack",
|
|
116
|
-
"direction": "horizontal",
|
|
117
|
-
"gap": "md",
|
|
118
115
|
"align": "center",
|
|
116
|
+
"gap": "md",
|
|
119
117
|
"justify": "space-between",
|
|
120
118
|
"children": [
|
|
121
119
|
{
|
|
122
|
-
"type": "stack",
|
|
123
|
-
"direction": "horizontal",
|
|
124
120
|
"gap": "md",
|
|
121
|
+
"direction": "horizontal",
|
|
125
122
|
"align": "center",
|
|
126
123
|
"children": [
|
|
127
124
|
{
|
|
128
125
|
"type": "icon",
|
|
129
|
-
"
|
|
130
|
-
"
|
|
126
|
+
"size": "lg",
|
|
127
|
+
"name": "crosshair"
|
|
131
128
|
},
|
|
132
129
|
{
|
|
133
130
|
"type": "typography",
|
|
134
131
|
"content": "CollidableBody Collision",
|
|
135
132
|
"variant": "h2"
|
|
136
133
|
}
|
|
137
|
-
]
|
|
134
|
+
],
|
|
135
|
+
"type": "stack"
|
|
138
136
|
},
|
|
139
137
|
{
|
|
138
|
+
"label": "Idle",
|
|
140
139
|
"type": "status-dot",
|
|
141
|
-
"status": "inactive"
|
|
142
|
-
"label": "Idle"
|
|
140
|
+
"status": "inactive"
|
|
143
141
|
}
|
|
144
|
-
]
|
|
142
|
+
],
|
|
143
|
+
"type": "stack",
|
|
144
|
+
"direction": "horizontal"
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
147
|
"type": "divider"
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
|
-
"type": "simple-grid",
|
|
151
|
-
"columns": 2,
|
|
152
150
|
"children": [
|
|
153
151
|
{
|
|
154
152
|
"type": "stat-display",
|
|
@@ -164,7 +162,6 @@
|
|
|
164
162
|
},
|
|
165
163
|
{
|
|
166
164
|
"type": "stat-display",
|
|
167
|
-
"label": "Y",
|
|
168
165
|
"value": [
|
|
169
166
|
"object/get",
|
|
170
167
|
[
|
|
@@ -172,15 +169,18 @@
|
|
|
172
169
|
"@entity"
|
|
173
170
|
],
|
|
174
171
|
"y"
|
|
175
|
-
]
|
|
172
|
+
],
|
|
173
|
+
"label": "Y"
|
|
176
174
|
}
|
|
177
|
-
]
|
|
175
|
+
],
|
|
176
|
+
"columns": 2.0,
|
|
177
|
+
"type": "simple-grid"
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
180
|
"type": "stack",
|
|
181
|
-
"direction": "horizontal",
|
|
182
|
-
"gap": "sm",
|
|
183
181
|
"justify": "center",
|
|
182
|
+
"gap": "sm",
|
|
183
|
+
"direction": "horizontal",
|
|
184
184
|
"children": [
|
|
185
185
|
{
|
|
186
186
|
"type": "button",
|
|
@@ -210,58 +210,56 @@
|
|
|
210
210
|
"render-ui",
|
|
211
211
|
"main",
|
|
212
212
|
{
|
|
213
|
-
"type": "stack",
|
|
214
213
|
"direction": "vertical",
|
|
215
214
|
"gap": "lg",
|
|
216
215
|
"children": [
|
|
217
216
|
{
|
|
218
|
-
"type": "stack",
|
|
219
|
-
"direction": "horizontal",
|
|
220
|
-
"gap": "md",
|
|
221
|
-
"align": "center",
|
|
222
|
-
"justify": "space-between",
|
|
223
217
|
"children": [
|
|
224
218
|
{
|
|
225
|
-
"type": "stack",
|
|
226
|
-
"direction": "horizontal",
|
|
227
|
-
"gap": "md",
|
|
228
219
|
"align": "center",
|
|
220
|
+
"gap": "md",
|
|
221
|
+
"direction": "horizontal",
|
|
222
|
+
"type": "stack",
|
|
229
223
|
"children": [
|
|
230
224
|
{
|
|
231
|
-
"
|
|
225
|
+
"size": "lg",
|
|
232
226
|
"name": "crosshair",
|
|
233
|
-
"
|
|
227
|
+
"type": "icon"
|
|
234
228
|
},
|
|
235
229
|
{
|
|
236
|
-
"type": "typography",
|
|
237
230
|
"content": "CollidableBody Collision",
|
|
231
|
+
"type": "typography",
|
|
238
232
|
"variant": "h2"
|
|
239
233
|
}
|
|
240
234
|
]
|
|
241
235
|
},
|
|
242
236
|
{
|
|
237
|
+
"label": "Detecting",
|
|
243
238
|
"type": "status-dot",
|
|
244
239
|
"status": "warning",
|
|
245
|
-
"pulse": true
|
|
246
|
-
"label": "Detecting"
|
|
240
|
+
"pulse": true
|
|
247
241
|
}
|
|
248
|
-
]
|
|
242
|
+
],
|
|
243
|
+
"gap": "md",
|
|
244
|
+
"align": "center",
|
|
245
|
+
"type": "stack",
|
|
246
|
+
"direction": "horizontal",
|
|
247
|
+
"justify": "space-between"
|
|
249
248
|
},
|
|
250
249
|
{
|
|
251
250
|
"type": "divider"
|
|
252
251
|
},
|
|
253
252
|
{
|
|
254
253
|
"type": "alert",
|
|
255
|
-
"
|
|
256
|
-
"
|
|
254
|
+
"message": "Collision detection in progress...",
|
|
255
|
+
"variant": "warning"
|
|
257
256
|
},
|
|
258
257
|
{
|
|
259
|
-
"
|
|
260
|
-
"columns": 2,
|
|
258
|
+
"columns": 2.0,
|
|
261
259
|
"children": [
|
|
262
260
|
{
|
|
263
|
-
"type": "stat-display",
|
|
264
261
|
"label": "X",
|
|
262
|
+
"type": "stat-display",
|
|
265
263
|
"value": [
|
|
266
264
|
"object/get",
|
|
267
265
|
[
|
|
@@ -272,7 +270,6 @@
|
|
|
272
270
|
]
|
|
273
271
|
},
|
|
274
272
|
{
|
|
275
|
-
"type": "stat-display",
|
|
276
273
|
"label": "Y",
|
|
277
274
|
"value": [
|
|
278
275
|
"object/get",
|
|
@@ -281,14 +278,13 @@
|
|
|
281
278
|
"@entity"
|
|
282
279
|
],
|
|
283
280
|
"y"
|
|
284
|
-
]
|
|
281
|
+
],
|
|
282
|
+
"type": "stat-display"
|
|
285
283
|
}
|
|
286
|
-
]
|
|
284
|
+
],
|
|
285
|
+
"type": "simple-grid"
|
|
287
286
|
},
|
|
288
287
|
{
|
|
289
|
-
"type": "typography",
|
|
290
|
-
"variant": "caption",
|
|
291
|
-
"color": "muted",
|
|
292
288
|
"content": [
|
|
293
289
|
"object/get",
|
|
294
290
|
[
|
|
@@ -296,24 +292,28 @@
|
|
|
296
292
|
"@entity"
|
|
297
293
|
],
|
|
298
294
|
"targetId"
|
|
299
|
-
]
|
|
295
|
+
],
|
|
296
|
+
"color": "muted",
|
|
297
|
+
"type": "typography",
|
|
298
|
+
"variant": "caption"
|
|
300
299
|
},
|
|
301
300
|
{
|
|
302
|
-
"type": "stack",
|
|
303
|
-
"direction": "horizontal",
|
|
304
|
-
"gap": "sm",
|
|
305
301
|
"justify": "center",
|
|
306
302
|
"children": [
|
|
307
303
|
{
|
|
304
|
+
"variant": "ghost",
|
|
305
|
+
"icon": "x",
|
|
308
306
|
"type": "button",
|
|
309
|
-
"label": "Clear",
|
|
310
307
|
"event": "CLEAR",
|
|
311
|
-
"
|
|
312
|
-
"icon": "x"
|
|
308
|
+
"label": "Clear"
|
|
313
309
|
}
|
|
314
|
-
]
|
|
310
|
+
],
|
|
311
|
+
"type": "stack",
|
|
312
|
+
"direction": "horizontal",
|
|
313
|
+
"gap": "sm"
|
|
315
314
|
}
|
|
316
|
-
]
|
|
315
|
+
],
|
|
316
|
+
"type": "stack"
|
|
317
317
|
}
|
|
318
318
|
]
|
|
319
319
|
]
|
|
@@ -339,55 +339,51 @@
|
|
|
339
339
|
{
|
|
340
340
|
"type": "stack",
|
|
341
341
|
"direction": "vertical",
|
|
342
|
-
"gap": "lg",
|
|
343
342
|
"children": [
|
|
344
343
|
{
|
|
345
|
-
"type": "stack",
|
|
346
|
-
"direction": "horizontal",
|
|
347
344
|
"gap": "md",
|
|
348
|
-
"align": "center",
|
|
349
|
-
"justify": "space-between",
|
|
350
345
|
"children": [
|
|
351
346
|
{
|
|
352
|
-
"type": "stack",
|
|
353
|
-
"direction": "horizontal",
|
|
354
347
|
"gap": "md",
|
|
348
|
+
"type": "stack",
|
|
355
349
|
"align": "center",
|
|
350
|
+
"direction": "horizontal",
|
|
356
351
|
"children": [
|
|
357
352
|
{
|
|
358
353
|
"type": "icon",
|
|
359
|
-
"
|
|
360
|
-
"
|
|
354
|
+
"size": "lg",
|
|
355
|
+
"name": "crosshair"
|
|
361
356
|
},
|
|
362
357
|
{
|
|
363
|
-
"type": "typography",
|
|
364
358
|
"content": "CollidableBody Collision",
|
|
365
|
-
"variant": "h2"
|
|
359
|
+
"variant": "h2",
|
|
360
|
+
"type": "typography"
|
|
366
361
|
}
|
|
367
362
|
]
|
|
368
363
|
},
|
|
369
364
|
{
|
|
365
|
+
"pulse": true,
|
|
370
366
|
"type": "status-dot",
|
|
371
367
|
"status": "warning",
|
|
372
|
-
"pulse": true,
|
|
373
368
|
"label": "Detecting"
|
|
374
369
|
}
|
|
375
|
-
]
|
|
370
|
+
],
|
|
371
|
+
"type": "stack",
|
|
372
|
+
"direction": "horizontal",
|
|
373
|
+
"align": "center",
|
|
374
|
+
"justify": "space-between"
|
|
376
375
|
},
|
|
377
376
|
{
|
|
378
377
|
"type": "divider"
|
|
379
378
|
},
|
|
380
379
|
{
|
|
381
|
-
"
|
|
380
|
+
"message": "Collision detection in progress...",
|
|
382
381
|
"variant": "warning",
|
|
383
|
-
"
|
|
382
|
+
"type": "alert"
|
|
384
383
|
},
|
|
385
384
|
{
|
|
386
|
-
"type": "simple-grid",
|
|
387
|
-
"columns": 2,
|
|
388
385
|
"children": [
|
|
389
386
|
{
|
|
390
|
-
"type": "stat-display",
|
|
391
387
|
"label": "X",
|
|
392
388
|
"value": [
|
|
393
389
|
"object/get",
|
|
@@ -396,11 +392,10 @@
|
|
|
396
392
|
"@entity"
|
|
397
393
|
],
|
|
398
394
|
"x"
|
|
399
|
-
]
|
|
395
|
+
],
|
|
396
|
+
"type": "stat-display"
|
|
400
397
|
},
|
|
401
398
|
{
|
|
402
|
-
"type": "stat-display",
|
|
403
|
-
"label": "Y",
|
|
404
399
|
"value": [
|
|
405
400
|
"object/get",
|
|
406
401
|
[
|
|
@@ -408,13 +403,16 @@
|
|
|
408
403
|
"@entity"
|
|
409
404
|
],
|
|
410
405
|
"y"
|
|
411
|
-
]
|
|
406
|
+
],
|
|
407
|
+
"label": "Y",
|
|
408
|
+
"type": "stat-display"
|
|
412
409
|
}
|
|
413
|
-
]
|
|
410
|
+
],
|
|
411
|
+
"type": "simple-grid",
|
|
412
|
+
"columns": 2.0
|
|
414
413
|
},
|
|
415
414
|
{
|
|
416
415
|
"type": "typography",
|
|
417
|
-
"variant": "caption",
|
|
418
416
|
"color": "muted",
|
|
419
417
|
"content": [
|
|
420
418
|
"object/get",
|
|
@@ -423,24 +421,26 @@
|
|
|
423
421
|
"@entity"
|
|
424
422
|
],
|
|
425
423
|
"targetId"
|
|
426
|
-
]
|
|
424
|
+
],
|
|
425
|
+
"variant": "caption"
|
|
427
426
|
},
|
|
428
427
|
{
|
|
429
|
-
"type": "stack",
|
|
430
428
|
"direction": "horizontal",
|
|
431
|
-
"gap": "sm",
|
|
432
|
-
"justify": "center",
|
|
433
429
|
"children": [
|
|
434
430
|
{
|
|
435
431
|
"type": "button",
|
|
436
432
|
"label": "Clear",
|
|
437
433
|
"event": "CLEAR",
|
|
438
|
-
"
|
|
439
|
-
"
|
|
434
|
+
"icon": "x",
|
|
435
|
+
"variant": "ghost"
|
|
440
436
|
}
|
|
441
|
-
]
|
|
437
|
+
],
|
|
438
|
+
"gap": "sm",
|
|
439
|
+
"type": "stack",
|
|
440
|
+
"justify": "center"
|
|
442
441
|
}
|
|
443
|
-
]
|
|
442
|
+
],
|
|
443
|
+
"gap": "lg"
|
|
444
444
|
}
|
|
445
445
|
]
|
|
446
446
|
]
|
|
@@ -465,33 +465,33 @@
|
|
|
465
465
|
"main",
|
|
466
466
|
{
|
|
467
467
|
"type": "stack",
|
|
468
|
-
"direction": "vertical",
|
|
469
468
|
"gap": "lg",
|
|
469
|
+
"direction": "vertical",
|
|
470
470
|
"children": [
|
|
471
471
|
{
|
|
472
|
-
"type": "stack",
|
|
473
472
|
"direction": "horizontal",
|
|
474
|
-
"gap": "md",
|
|
475
473
|
"align": "center",
|
|
474
|
+
"gap": "md",
|
|
475
|
+
"type": "stack",
|
|
476
476
|
"justify": "space-between",
|
|
477
477
|
"children": [
|
|
478
478
|
{
|
|
479
|
-
"type": "stack",
|
|
480
|
-
"direction": "horizontal",
|
|
481
479
|
"gap": "md",
|
|
482
|
-
"align": "center",
|
|
483
480
|
"children": [
|
|
484
481
|
{
|
|
482
|
+
"size": "lg",
|
|
485
483
|
"type": "icon",
|
|
486
|
-
"name": "crosshair"
|
|
487
|
-
"size": "lg"
|
|
484
|
+
"name": "crosshair"
|
|
488
485
|
},
|
|
489
486
|
{
|
|
490
|
-
"type": "typography",
|
|
491
487
|
"content": "CollidableBody Collision",
|
|
492
|
-
"variant": "h2"
|
|
488
|
+
"variant": "h2",
|
|
489
|
+
"type": "typography"
|
|
493
490
|
}
|
|
494
|
-
]
|
|
491
|
+
],
|
|
492
|
+
"type": "stack",
|
|
493
|
+
"direction": "horizontal",
|
|
494
|
+
"align": "center"
|
|
495
495
|
},
|
|
496
496
|
{
|
|
497
497
|
"type": "status-dot",
|
|
@@ -505,7 +505,7 @@
|
|
|
505
505
|
},
|
|
506
506
|
{
|
|
507
507
|
"type": "simple-grid",
|
|
508
|
-
"columns": 2,
|
|
508
|
+
"columns": 2.0,
|
|
509
509
|
"children": [
|
|
510
510
|
{
|
|
511
511
|
"type": "stat-display",
|
|
@@ -534,17 +534,17 @@
|
|
|
534
534
|
]
|
|
535
535
|
},
|
|
536
536
|
{
|
|
537
|
-
"type": "stack",
|
|
538
537
|
"direction": "horizontal",
|
|
539
538
|
"gap": "sm",
|
|
539
|
+
"type": "stack",
|
|
540
540
|
"justify": "center",
|
|
541
541
|
"children": [
|
|
542
542
|
{
|
|
543
|
-
"type": "button",
|
|
544
543
|
"label": "Check",
|
|
545
544
|
"event": "CHECK",
|
|
546
545
|
"variant": "primary",
|
|
547
|
-
"icon": "scan"
|
|
546
|
+
"icon": "scan",
|
|
547
|
+
"type": "button"
|
|
548
548
|
}
|
|
549
549
|
]
|
|
550
550
|
}
|
|
@@ -562,57 +562,54 @@
|
|
|
562
562
|
"render-ui",
|
|
563
563
|
"main",
|
|
564
564
|
{
|
|
565
|
-
"type": "stack",
|
|
566
565
|
"direction": "vertical",
|
|
567
566
|
"gap": "lg",
|
|
567
|
+
"type": "stack",
|
|
568
568
|
"children": [
|
|
569
569
|
{
|
|
570
|
-
"type": "stack",
|
|
571
|
-
"direction": "horizontal",
|
|
572
|
-
"gap": "md",
|
|
573
|
-
"align": "center",
|
|
574
|
-
"justify": "space-between",
|
|
575
570
|
"children": [
|
|
576
571
|
{
|
|
577
|
-
"type": "stack",
|
|
578
|
-
"direction": "horizontal",
|
|
579
572
|
"gap": "md",
|
|
580
573
|
"align": "center",
|
|
574
|
+
"direction": "horizontal",
|
|
575
|
+
"type": "stack",
|
|
581
576
|
"children": [
|
|
582
577
|
{
|
|
583
|
-
"type": "icon",
|
|
584
578
|
"name": "crosshair",
|
|
585
|
-
"size": "lg"
|
|
579
|
+
"size": "lg",
|
|
580
|
+
"type": "icon"
|
|
586
581
|
},
|
|
587
582
|
{
|
|
583
|
+
"variant": "h2",
|
|
588
584
|
"type": "typography",
|
|
589
|
-
"content": "CollidableBody Collision"
|
|
590
|
-
"variant": "h2"
|
|
585
|
+
"content": "CollidableBody Collision"
|
|
591
586
|
}
|
|
592
587
|
]
|
|
593
588
|
},
|
|
594
589
|
{
|
|
595
|
-
"type": "status-dot",
|
|
596
590
|
"status": "warning",
|
|
597
|
-
"
|
|
598
|
-
"
|
|
591
|
+
"label": "Detecting",
|
|
592
|
+
"type": "status-dot",
|
|
593
|
+
"pulse": true
|
|
599
594
|
}
|
|
600
|
-
]
|
|
595
|
+
],
|
|
596
|
+
"direction": "horizontal",
|
|
597
|
+
"align": "center",
|
|
598
|
+
"type": "stack",
|
|
599
|
+
"gap": "md",
|
|
600
|
+
"justify": "space-between"
|
|
601
601
|
},
|
|
602
602
|
{
|
|
603
603
|
"type": "divider"
|
|
604
604
|
},
|
|
605
605
|
{
|
|
606
|
-
"type": "alert",
|
|
607
606
|
"variant": "warning",
|
|
608
|
-
"message": "Collision detection in progress..."
|
|
607
|
+
"message": "Collision detection in progress...",
|
|
608
|
+
"type": "alert"
|
|
609
609
|
},
|
|
610
610
|
{
|
|
611
|
-
"type": "simple-grid",
|
|
612
|
-
"columns": 2,
|
|
613
611
|
"children": [
|
|
614
612
|
{
|
|
615
|
-
"type": "stat-display",
|
|
616
613
|
"label": "X",
|
|
617
614
|
"value": [
|
|
618
615
|
"object/get",
|
|
@@ -621,7 +618,8 @@
|
|
|
621
618
|
"@entity"
|
|
622
619
|
],
|
|
623
620
|
"x"
|
|
624
|
-
]
|
|
621
|
+
],
|
|
622
|
+
"type": "stat-display"
|
|
625
623
|
},
|
|
626
624
|
{
|
|
627
625
|
"type": "stat-display",
|
|
@@ -635,12 +633,14 @@
|
|
|
635
633
|
"y"
|
|
636
634
|
]
|
|
637
635
|
}
|
|
638
|
-
]
|
|
636
|
+
],
|
|
637
|
+
"columns": 2.0,
|
|
638
|
+
"type": "simple-grid"
|
|
639
639
|
},
|
|
640
640
|
{
|
|
641
|
+
"color": "muted",
|
|
641
642
|
"type": "typography",
|
|
642
643
|
"variant": "caption",
|
|
643
|
-
"color": "muted",
|
|
644
644
|
"content": [
|
|
645
645
|
"object/get",
|
|
646
646
|
[
|
|
@@ -651,17 +651,17 @@
|
|
|
651
651
|
]
|
|
652
652
|
},
|
|
653
653
|
{
|
|
654
|
-
"type": "stack",
|
|
655
|
-
"direction": "horizontal",
|
|
656
654
|
"gap": "sm",
|
|
655
|
+
"type": "stack",
|
|
657
656
|
"justify": "center",
|
|
657
|
+
"direction": "horizontal",
|
|
658
658
|
"children": [
|
|
659
659
|
{
|
|
660
|
+
"icon": "x",
|
|
660
661
|
"type": "button",
|
|
661
|
-
"label": "Clear",
|
|
662
|
-
"event": "CLEAR",
|
|
663
662
|
"variant": "ghost",
|
|
664
|
-
"
|
|
663
|
+
"label": "Clear",
|
|
664
|
+
"event": "CLEAR"
|
|
665
665
|
}
|
|
666
666
|
]
|
|
667
667
|
}
|
|
@@ -671,7 +671,8 @@
|
|
|
671
671
|
]
|
|
672
672
|
}
|
|
673
673
|
]
|
|
674
|
-
}
|
|
674
|
+
},
|
|
675
|
+
"scope": "collection"
|
|
675
676
|
}
|
|
676
677
|
],
|
|
677
678
|
"pages": [
|
|
@@ -687,4 +688,4 @@
|
|
|
687
688
|
]
|
|
688
689
|
}
|
|
689
690
|
]
|
|
690
|
-
}
|
|
691
|
+
}
|