@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,32 +38,32 @@
|
|
|
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": "vx",
|
|
50
50
|
"type": "number",
|
|
51
|
-
"default": 0
|
|
51
|
+
"default": 0.0
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"name": "vy",
|
|
55
55
|
"type": "number",
|
|
56
|
-
"default": 0
|
|
56
|
+
"default": 0.0
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
"name": "forceX",
|
|
60
60
|
"type": "number",
|
|
61
|
-
"default": 0
|
|
61
|
+
"default": 0.0
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"name": "forceY",
|
|
65
65
|
"type": "number",
|
|
66
|
-
"default": 0
|
|
66
|
+
"default": 0.0
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"name": "physicsStatus",
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
"traits": [
|
|
76
76
|
{
|
|
77
77
|
"name": "PhysicsBodyPhysics",
|
|
78
|
-
"linkedEntity": "PhysicsBody",
|
|
79
78
|
"category": "interaction",
|
|
79
|
+
"linkedEntity": "PhysicsBody",
|
|
80
80
|
"stateMachine": {
|
|
81
81
|
"states": [
|
|
82
82
|
{
|
|
@@ -94,11 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
"key": "START",
|
|
97
|
-
"name": "Start
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
"key": "STOP",
|
|
101
|
-
"name": "Stop Simulation"
|
|
97
|
+
"name": "Start"
|
|
102
98
|
},
|
|
103
99
|
{
|
|
104
100
|
"key": "TICK",
|
|
@@ -119,6 +115,10 @@
|
|
|
119
115
|
"required": true
|
|
120
116
|
}
|
|
121
117
|
]
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"key": "STOP",
|
|
121
|
+
"name": "Stop"
|
|
122
122
|
}
|
|
123
123
|
],
|
|
124
124
|
"transitions": [
|
|
@@ -131,27 +131,27 @@
|
|
|
131
131
|
"render-ui",
|
|
132
132
|
"main",
|
|
133
133
|
{
|
|
134
|
-
"type": "stack",
|
|
135
|
-
"direction": "vertical",
|
|
136
|
-
"gap": "lg",
|
|
137
|
-
"align": "center",
|
|
138
134
|
"children": [
|
|
139
135
|
{
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"width": 800,
|
|
143
|
-
"height": 400,
|
|
136
|
+
"width": 800.0,
|
|
137
|
+
"height": 400.0,
|
|
144
138
|
"running": false,
|
|
145
|
-
"speed": 1
|
|
139
|
+
"speed": 1.0,
|
|
140
|
+
"type": "simulation-canvas",
|
|
141
|
+
"preset": "spring"
|
|
146
142
|
},
|
|
147
143
|
{
|
|
148
|
-
"type": "button",
|
|
149
|
-
"label": "Start",
|
|
150
144
|
"event": "START",
|
|
151
145
|
"variant": "primary",
|
|
152
|
-
"icon": "play"
|
|
146
|
+
"icon": "play",
|
|
147
|
+
"label": "Start",
|
|
148
|
+
"type": "button"
|
|
153
149
|
}
|
|
154
|
-
]
|
|
150
|
+
],
|
|
151
|
+
"direction": "vertical",
|
|
152
|
+
"gap": "lg",
|
|
153
|
+
"type": "stack",
|
|
154
|
+
"align": "center"
|
|
155
155
|
}
|
|
156
156
|
]
|
|
157
157
|
]
|
|
@@ -170,42 +170,42 @@
|
|
|
170
170
|
"render-ui",
|
|
171
171
|
"main",
|
|
172
172
|
{
|
|
173
|
-
"type": "stack",
|
|
174
|
-
"direction": "vertical",
|
|
175
|
-
"gap": "lg",
|
|
176
|
-
"align": "center",
|
|
177
173
|
"children": [
|
|
178
174
|
{
|
|
175
|
+
"speed": 1.0,
|
|
176
|
+
"width": 800.0,
|
|
179
177
|
"type": "simulation-canvas",
|
|
180
178
|
"preset": "spring",
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"running": true,
|
|
184
|
-
"speed": 1
|
|
179
|
+
"height": 400.0,
|
|
180
|
+
"running": true
|
|
185
181
|
},
|
|
186
182
|
{
|
|
187
183
|
"type": "stack",
|
|
188
184
|
"direction": "horizontal",
|
|
189
185
|
"gap": "sm",
|
|
190
|
-
"justify": "center",
|
|
191
186
|
"children": [
|
|
192
187
|
{
|
|
193
|
-
"type": "button",
|
|
194
|
-
"label": "Apply Force",
|
|
195
188
|
"event": "APPLY_FORCE",
|
|
189
|
+
"label": "Apply Force",
|
|
190
|
+
"type": "button",
|
|
196
191
|
"variant": "secondary",
|
|
197
192
|
"icon": "move"
|
|
198
193
|
},
|
|
199
194
|
{
|
|
200
|
-
"type": "button",
|
|
201
|
-
"label": "Stop",
|
|
202
|
-
"event": "STOP",
|
|
203
195
|
"variant": "ghost",
|
|
204
|
-
"
|
|
196
|
+
"event": "STOP",
|
|
197
|
+
"label": "Stop",
|
|
198
|
+
"icon": "square",
|
|
199
|
+
"type": "button"
|
|
205
200
|
}
|
|
206
|
-
]
|
|
201
|
+
],
|
|
202
|
+
"justify": "center"
|
|
207
203
|
}
|
|
208
|
-
]
|
|
204
|
+
],
|
|
205
|
+
"direction": "vertical",
|
|
206
|
+
"gap": "lg",
|
|
207
|
+
"align": "center",
|
|
208
|
+
"type": "stack"
|
|
209
209
|
}
|
|
210
210
|
]
|
|
211
211
|
]
|
|
@@ -221,22 +221,20 @@
|
|
|
221
221
|
{
|
|
222
222
|
"type": "stack",
|
|
223
223
|
"direction": "vertical",
|
|
224
|
-
"gap": "lg",
|
|
225
224
|
"align": "center",
|
|
225
|
+
"gap": "lg",
|
|
226
226
|
"children": [
|
|
227
227
|
{
|
|
228
|
-
"
|
|
229
|
-
"
|
|
230
|
-
"width": 800,
|
|
231
|
-
"height": 400,
|
|
228
|
+
"speed": 1.0,
|
|
229
|
+
"width": 800.0,
|
|
232
230
|
"running": true,
|
|
233
|
-
"
|
|
231
|
+
"preset": "spring",
|
|
232
|
+
"height": 400.0,
|
|
233
|
+
"type": "simulation-canvas"
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
"type": "stack",
|
|
237
237
|
"direction": "horizontal",
|
|
238
|
-
"gap": "sm",
|
|
239
|
-
"justify": "center",
|
|
240
238
|
"children": [
|
|
241
239
|
{
|
|
242
240
|
"type": "button",
|
|
@@ -246,13 +244,15 @@
|
|
|
246
244
|
"icon": "move"
|
|
247
245
|
},
|
|
248
246
|
{
|
|
249
|
-
"type": "button",
|
|
250
247
|
"label": "Stop",
|
|
251
248
|
"event": "STOP",
|
|
252
249
|
"variant": "ghost",
|
|
250
|
+
"type": "button",
|
|
253
251
|
"icon": "square"
|
|
254
252
|
}
|
|
255
|
-
]
|
|
253
|
+
],
|
|
254
|
+
"justify": "center",
|
|
255
|
+
"gap": "sm"
|
|
256
256
|
}
|
|
257
257
|
]
|
|
258
258
|
}
|
|
@@ -279,41 +279,41 @@
|
|
|
279
279
|
"main",
|
|
280
280
|
{
|
|
281
281
|
"type": "stack",
|
|
282
|
-
"direction": "vertical",
|
|
283
282
|
"gap": "lg",
|
|
284
|
-
"align": "center",
|
|
285
283
|
"children": [
|
|
286
284
|
{
|
|
287
285
|
"type": "simulation-canvas",
|
|
288
|
-
"preset": "spring",
|
|
289
|
-
"width": 800,
|
|
290
|
-
"height": 400,
|
|
291
286
|
"running": true,
|
|
292
|
-
"
|
|
287
|
+
"preset": "spring",
|
|
288
|
+
"speed": 1.0,
|
|
289
|
+
"width": 800.0,
|
|
290
|
+
"height": 400.0
|
|
293
291
|
},
|
|
294
292
|
{
|
|
295
|
-
"type": "stack",
|
|
296
|
-
"direction": "horizontal",
|
|
297
293
|
"gap": "sm",
|
|
294
|
+
"type": "stack",
|
|
298
295
|
"justify": "center",
|
|
296
|
+
"direction": "horizontal",
|
|
299
297
|
"children": [
|
|
300
298
|
{
|
|
301
|
-
"type": "button",
|
|
302
|
-
"label": "Apply Force",
|
|
303
299
|
"event": "APPLY_FORCE",
|
|
304
300
|
"variant": "secondary",
|
|
301
|
+
"type": "button",
|
|
302
|
+
"label": "Apply Force",
|
|
305
303
|
"icon": "move"
|
|
306
304
|
},
|
|
307
305
|
{
|
|
308
|
-
"type": "button",
|
|
309
|
-
"label": "Stop",
|
|
310
306
|
"event": "STOP",
|
|
307
|
+
"label": "Stop",
|
|
308
|
+
"icon": "square",
|
|
311
309
|
"variant": "ghost",
|
|
312
|
-
"
|
|
310
|
+
"type": "button"
|
|
313
311
|
}
|
|
314
312
|
]
|
|
315
313
|
}
|
|
316
|
-
]
|
|
314
|
+
],
|
|
315
|
+
"align": "center",
|
|
316
|
+
"direction": "vertical"
|
|
317
317
|
}
|
|
318
318
|
]
|
|
319
319
|
]
|
|
@@ -332,27 +332,27 @@
|
|
|
332
332
|
"render-ui",
|
|
333
333
|
"main",
|
|
334
334
|
{
|
|
335
|
-
"type": "stack",
|
|
336
335
|
"direction": "vertical",
|
|
337
|
-
"gap": "lg",
|
|
338
336
|
"align": "center",
|
|
337
|
+
"gap": "lg",
|
|
339
338
|
"children": [
|
|
340
339
|
{
|
|
341
340
|
"type": "simulation-canvas",
|
|
341
|
+
"speed": 1.0,
|
|
342
342
|
"preset": "spring",
|
|
343
|
-
"width": 800,
|
|
344
|
-
"height": 400,
|
|
345
343
|
"running": false,
|
|
346
|
-
"
|
|
344
|
+
"width": 800.0,
|
|
345
|
+
"height": 400.0
|
|
347
346
|
},
|
|
348
347
|
{
|
|
349
|
-
"
|
|
348
|
+
"variant": "primary",
|
|
349
|
+
"icon": "play",
|
|
350
350
|
"label": "Start",
|
|
351
351
|
"event": "START",
|
|
352
|
-
"
|
|
353
|
-
"icon": "play"
|
|
352
|
+
"type": "button"
|
|
354
353
|
}
|
|
355
|
-
]
|
|
354
|
+
],
|
|
355
|
+
"type": "stack"
|
|
356
356
|
}
|
|
357
357
|
]
|
|
358
358
|
]
|
|
@@ -366,48 +366,49 @@
|
|
|
366
366
|
"render-ui",
|
|
367
367
|
"main",
|
|
368
368
|
{
|
|
369
|
-
"type": "stack",
|
|
370
369
|
"direction": "vertical",
|
|
371
370
|
"gap": "lg",
|
|
372
371
|
"align": "center",
|
|
373
372
|
"children": [
|
|
374
373
|
{
|
|
375
|
-
"type": "simulation-canvas",
|
|
376
374
|
"preset": "spring",
|
|
377
|
-
"width": 800,
|
|
378
|
-
"height": 400,
|
|
379
375
|
"running": true,
|
|
380
|
-
"
|
|
376
|
+
"type": "simulation-canvas",
|
|
377
|
+
"height": 400.0,
|
|
378
|
+
"speed": 1.0,
|
|
379
|
+
"width": 800.0
|
|
381
380
|
},
|
|
382
381
|
{
|
|
383
|
-
"type": "stack",
|
|
384
382
|
"direction": "horizontal",
|
|
385
|
-
"gap": "sm",
|
|
386
|
-
"justify": "center",
|
|
387
383
|
"children": [
|
|
388
384
|
{
|
|
389
385
|
"type": "button",
|
|
390
|
-
"label": "Apply Force",
|
|
391
|
-
"event": "APPLY_FORCE",
|
|
392
386
|
"variant": "secondary",
|
|
393
|
-
"icon": "move"
|
|
387
|
+
"icon": "move",
|
|
388
|
+
"label": "Apply Force",
|
|
389
|
+
"event": "APPLY_FORCE"
|
|
394
390
|
},
|
|
395
391
|
{
|
|
396
|
-
"type": "button",
|
|
397
|
-
"label": "Stop",
|
|
398
392
|
"event": "STOP",
|
|
393
|
+
"type": "button",
|
|
399
394
|
"variant": "ghost",
|
|
400
|
-
"icon": "square"
|
|
395
|
+
"icon": "square",
|
|
396
|
+
"label": "Stop"
|
|
401
397
|
}
|
|
402
|
-
]
|
|
398
|
+
],
|
|
399
|
+
"gap": "sm",
|
|
400
|
+
"type": "stack",
|
|
401
|
+
"justify": "center"
|
|
403
402
|
}
|
|
404
|
-
]
|
|
403
|
+
],
|
|
404
|
+
"type": "stack"
|
|
405
405
|
}
|
|
406
406
|
]
|
|
407
407
|
]
|
|
408
408
|
}
|
|
409
409
|
]
|
|
410
|
-
}
|
|
410
|
+
},
|
|
411
|
+
"scope": "instance"
|
|
411
412
|
}
|
|
412
413
|
],
|
|
413
414
|
"pages": [
|
|
@@ -423,4 +424,4 @@
|
|
|
423
424
|
]
|
|
424
425
|
}
|
|
425
426
|
]
|
|
426
|
-
}
|
|
427
|
+
}
|