@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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-platformer-game",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-platformer-game as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "PlatLevelOrbital",
|
|
@@ -38,16 +38,12 @@
|
|
|
38
38
|
{
|
|
39
39
|
"name": "score",
|
|
40
40
|
"type": "number",
|
|
41
|
-
"default": 0
|
|
42
|
-
"min": 0,
|
|
43
|
-
"max": 9999
|
|
41
|
+
"default": 0.0
|
|
44
42
|
},
|
|
45
43
|
{
|
|
46
44
|
"name": "lives",
|
|
47
45
|
"type": "number",
|
|
48
|
-
"default": 3
|
|
49
|
-
"min": 0,
|
|
50
|
-
"max": 10
|
|
46
|
+
"default": 3.0
|
|
51
47
|
},
|
|
52
48
|
{
|
|
53
49
|
"name": "player",
|
|
@@ -59,25 +55,69 @@
|
|
|
59
55
|
"type": "string",
|
|
60
56
|
"default": ""
|
|
61
57
|
}
|
|
62
|
-
],
|
|
63
|
-
"instances": [
|
|
64
|
-
{
|
|
65
|
-
"id": "player-1",
|
|
66
|
-
"name": "Player",
|
|
67
|
-
"description": "Main character",
|
|
68
|
-
"status": "active",
|
|
69
|
-
"score": 0,
|
|
70
|
-
"lives": 3,
|
|
71
|
-
"player": "",
|
|
72
|
-
"platforms": ""
|
|
73
|
-
}
|
|
74
58
|
]
|
|
75
59
|
},
|
|
76
60
|
"traits": [
|
|
77
61
|
{
|
|
78
62
|
"name": "PlatLevelPlatformerFlow",
|
|
79
|
-
"linkedEntity": "PlatLevel",
|
|
80
63
|
"category": "interaction",
|
|
64
|
+
"linkedEntity": "PlatLevel",
|
|
65
|
+
"emits": [
|
|
66
|
+
{
|
|
67
|
+
"event": "PlatLevelLoaded",
|
|
68
|
+
"description": "Fired when PlatLevel finishes loading",
|
|
69
|
+
"scope": "internal",
|
|
70
|
+
"payload": [
|
|
71
|
+
{
|
|
72
|
+
"name": "id",
|
|
73
|
+
"type": "string"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "name",
|
|
77
|
+
"type": "string"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "description",
|
|
81
|
+
"type": "string"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "status",
|
|
85
|
+
"type": "string"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "createdAt",
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "score",
|
|
93
|
+
"type": "number"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "lives",
|
|
97
|
+
"type": "number"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "player",
|
|
101
|
+
"type": "string"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "platforms",
|
|
105
|
+
"type": "string"
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"event": "PlatLevelLoadFailed",
|
|
111
|
+
"description": "Fired when PlatLevel fails to load",
|
|
112
|
+
"scope": "internal",
|
|
113
|
+
"payload": [
|
|
114
|
+
{
|
|
115
|
+
"name": "message",
|
|
116
|
+
"type": "string"
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
],
|
|
81
121
|
"stateMachine": {
|
|
82
122
|
"states": [
|
|
83
123
|
{
|
|
@@ -101,15 +141,19 @@
|
|
|
101
141
|
},
|
|
102
142
|
{
|
|
103
143
|
"key": "START",
|
|
104
|
-
"name": "Start
|
|
144
|
+
"name": "Start"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"key": "NAVIGATE",
|
|
148
|
+
"name": "Navigate"
|
|
105
149
|
},
|
|
106
150
|
{
|
|
107
151
|
"key": "LEFT",
|
|
108
|
-
"name": "
|
|
152
|
+
"name": "Left"
|
|
109
153
|
},
|
|
110
154
|
{
|
|
111
155
|
"key": "RIGHT",
|
|
112
|
-
"name": "
|
|
156
|
+
"name": "Right"
|
|
113
157
|
},
|
|
114
158
|
{
|
|
115
159
|
"key": "JUMP",
|
|
@@ -123,25 +167,35 @@
|
|
|
123
167
|
"key": "PAUSE",
|
|
124
168
|
"name": "Pause"
|
|
125
169
|
},
|
|
170
|
+
{
|
|
171
|
+
"key": "GAME_OVER",
|
|
172
|
+
"name": "Game Over"
|
|
173
|
+
},
|
|
126
174
|
{
|
|
127
175
|
"key": "RESUME",
|
|
128
176
|
"name": "Resume"
|
|
129
177
|
},
|
|
130
178
|
{
|
|
131
|
-
"key": "
|
|
132
|
-
"name": "
|
|
179
|
+
"key": "CLOSE",
|
|
180
|
+
"name": "Close"
|
|
133
181
|
},
|
|
134
182
|
{
|
|
135
183
|
"key": "RESTART",
|
|
136
184
|
"name": "Restart"
|
|
137
185
|
},
|
|
138
186
|
{
|
|
139
|
-
"key": "
|
|
140
|
-
"name": "
|
|
187
|
+
"key": "PlatLevelLoaded",
|
|
188
|
+
"name": "PlatLevel loaded"
|
|
141
189
|
},
|
|
142
190
|
{
|
|
143
|
-
"key": "
|
|
144
|
-
"name": "
|
|
191
|
+
"key": "PlatLevelLoadFailed",
|
|
192
|
+
"name": "PlatLevel load failed",
|
|
193
|
+
"payload": [
|
|
194
|
+
{
|
|
195
|
+
"name": "message",
|
|
196
|
+
"type": "string"
|
|
197
|
+
}
|
|
198
|
+
]
|
|
145
199
|
}
|
|
146
200
|
],
|
|
147
201
|
"transitions": [
|
|
@@ -152,20 +206,26 @@
|
|
|
152
206
|
"effects": [
|
|
153
207
|
[
|
|
154
208
|
"fetch",
|
|
155
|
-
"PlatLevel"
|
|
209
|
+
"PlatLevel",
|
|
210
|
+
{
|
|
211
|
+
"emit": {
|
|
212
|
+
"success": "PlatLevelLoaded",
|
|
213
|
+
"failure": "PlatLevelLoadFailed"
|
|
214
|
+
}
|
|
215
|
+
}
|
|
156
216
|
],
|
|
157
217
|
[
|
|
158
218
|
"render-ui",
|
|
159
219
|
"main",
|
|
160
220
|
{
|
|
161
|
-
"type": "game-menu",
|
|
162
|
-
"title": "Platformer",
|
|
163
221
|
"subtitle": "Side-Scrolling Adventure",
|
|
222
|
+
"title": "Platformer",
|
|
223
|
+
"type": "game-menu",
|
|
164
224
|
"menuItems": [
|
|
165
225
|
{
|
|
226
|
+
"variant": "primary",
|
|
166
227
|
"label": "Start Game",
|
|
167
|
-
"event": "START"
|
|
168
|
-
"variant": "primary"
|
|
228
|
+
"event": "START"
|
|
169
229
|
}
|
|
170
230
|
]
|
|
171
231
|
}
|
|
@@ -181,56 +241,45 @@
|
|
|
181
241
|
"render-ui",
|
|
182
242
|
"main",
|
|
183
243
|
{
|
|
244
|
+
"worldWidth": 2400.0,
|
|
184
245
|
"type": "platformer-canvas",
|
|
185
|
-
"canvasWidth": 800,
|
|
186
|
-
"canvasHeight": 400,
|
|
187
|
-
"worldWidth": 2400,
|
|
188
|
-
"worldHeight": 400,
|
|
189
|
-
"followCamera": true,
|
|
190
|
-
"bgColor": "#1a1a2e",
|
|
191
|
-
"leftEvent": "LEFT",
|
|
192
|
-
"rightEvent": "RIGHT",
|
|
193
246
|
"jumpEvent": "JUMP",
|
|
194
|
-
"
|
|
247
|
+
"canvasWidth": 800.0,
|
|
248
|
+
"rightEvent": "RIGHT",
|
|
249
|
+
"leftEvent": "LEFT",
|
|
250
|
+
"worldHeight": 400.0,
|
|
251
|
+
"bgColor": "#1a1a2e",
|
|
252
|
+
"followCamera": true,
|
|
253
|
+
"stopEvent": "STOP",
|
|
254
|
+
"canvasHeight": 400.0
|
|
195
255
|
}
|
|
196
256
|
]
|
|
197
257
|
]
|
|
198
258
|
},
|
|
199
259
|
{
|
|
200
|
-
"from": "
|
|
201
|
-
"to": "
|
|
202
|
-
"event": "
|
|
203
|
-
"effects": []
|
|
260
|
+
"from": "menu",
|
|
261
|
+
"to": "menu",
|
|
262
|
+
"event": "NAVIGATE"
|
|
204
263
|
},
|
|
205
264
|
{
|
|
206
265
|
"from": "playing",
|
|
207
266
|
"to": "playing",
|
|
208
|
-
"event": "
|
|
209
|
-
"effects": []
|
|
267
|
+
"event": "LEFT"
|
|
210
268
|
},
|
|
211
269
|
{
|
|
212
270
|
"from": "playing",
|
|
213
271
|
"to": "playing",
|
|
214
|
-
"event": "
|
|
215
|
-
"effects": []
|
|
272
|
+
"event": "RIGHT"
|
|
216
273
|
},
|
|
217
274
|
{
|
|
218
275
|
"from": "playing",
|
|
219
276
|
"to": "playing",
|
|
220
|
-
"event": "
|
|
221
|
-
"effects": []
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
"from": "menu",
|
|
225
|
-
"to": "menu",
|
|
226
|
-
"event": "NAVIGATE",
|
|
227
|
-
"effects": []
|
|
277
|
+
"event": "JUMP"
|
|
228
278
|
},
|
|
229
279
|
{
|
|
230
|
-
"from": "
|
|
231
|
-
"to": "
|
|
232
|
-
"event": "
|
|
233
|
-
"effects": []
|
|
280
|
+
"from": "playing",
|
|
281
|
+
"to": "playing",
|
|
282
|
+
"event": "STOP"
|
|
234
283
|
},
|
|
235
284
|
{
|
|
236
285
|
"from": "playing",
|
|
@@ -241,24 +290,66 @@
|
|
|
241
290
|
"render-ui",
|
|
242
291
|
"modal",
|
|
243
292
|
{
|
|
244
|
-
"type": "game-menu",
|
|
245
293
|
"title": "Paused",
|
|
246
294
|
"menuItems": [
|
|
247
295
|
{
|
|
248
|
-
"label": "Resume",
|
|
249
296
|
"event": "RESUME",
|
|
250
|
-
"variant": "primary"
|
|
297
|
+
"variant": "primary",
|
|
298
|
+
"label": "Resume"
|
|
251
299
|
},
|
|
252
300
|
{
|
|
253
301
|
"label": "Quit",
|
|
254
302
|
"event": "RESTART",
|
|
255
303
|
"variant": "ghost"
|
|
256
304
|
}
|
|
305
|
+
],
|
|
306
|
+
"type": "game-menu"
|
|
307
|
+
}
|
|
308
|
+
]
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"from": "playing",
|
|
313
|
+
"to": "gameover",
|
|
314
|
+
"event": "GAME_OVER",
|
|
315
|
+
"effects": [
|
|
316
|
+
[
|
|
317
|
+
"render-ui",
|
|
318
|
+
"main",
|
|
319
|
+
{
|
|
320
|
+
"type": "game-over-screen",
|
|
321
|
+
"stats": [
|
|
322
|
+
{
|
|
323
|
+
"label": "Score",
|
|
324
|
+
"value": "@entity.score"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"value": "@entity.lives",
|
|
328
|
+
"label": "Lives"
|
|
329
|
+
}
|
|
330
|
+
],
|
|
331
|
+
"title": "Game Over",
|
|
332
|
+
"menuItems": [
|
|
333
|
+
{
|
|
334
|
+
"event": "RESTART",
|
|
335
|
+
"variant": "primary",
|
|
336
|
+
"label": "Play Again"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"event": "RESTART",
|
|
340
|
+
"variant": "secondary",
|
|
341
|
+
"label": "Main Menu"
|
|
342
|
+
}
|
|
257
343
|
]
|
|
258
344
|
}
|
|
259
345
|
]
|
|
260
346
|
]
|
|
261
347
|
},
|
|
348
|
+
{
|
|
349
|
+
"from": "paused",
|
|
350
|
+
"to": "paused",
|
|
351
|
+
"event": "NAVIGATE"
|
|
352
|
+
},
|
|
262
353
|
{
|
|
263
354
|
"from": "paused",
|
|
264
355
|
"to": "playing",
|
|
@@ -273,16 +364,16 @@
|
|
|
273
364
|
"render-ui",
|
|
274
365
|
"main",
|
|
275
366
|
{
|
|
367
|
+
"jumpEvent": "JUMP",
|
|
276
368
|
"type": "platformer-canvas",
|
|
277
|
-
"
|
|
278
|
-
"
|
|
279
|
-
"worldWidth": 2400,
|
|
280
|
-
"worldHeight": 400,
|
|
281
|
-
"followCamera": true,
|
|
369
|
+
"canvasHeight": 400.0,
|
|
370
|
+
"worldWidth": 2400.0,
|
|
282
371
|
"bgColor": "#1a1a2e",
|
|
372
|
+
"worldHeight": 400.0,
|
|
373
|
+
"canvasWidth": 800.0,
|
|
283
374
|
"leftEvent": "LEFT",
|
|
284
375
|
"rightEvent": "RIGHT",
|
|
285
|
-
"
|
|
376
|
+
"followCamera": true,
|
|
286
377
|
"stopEvent": "STOP"
|
|
287
378
|
}
|
|
288
379
|
]
|
|
@@ -303,115 +394,135 @@
|
|
|
303
394
|
"main",
|
|
304
395
|
{
|
|
305
396
|
"type": "platformer-canvas",
|
|
306
|
-
"canvasWidth": 800,
|
|
307
|
-
"canvasHeight": 400,
|
|
308
|
-
"worldWidth": 2400,
|
|
309
|
-
"worldHeight": 400,
|
|
310
|
-
"followCamera": true,
|
|
311
|
-
"bgColor": "#1a1a2e",
|
|
312
397
|
"leftEvent": "LEFT",
|
|
313
|
-
"
|
|
398
|
+
"canvasWidth": 800.0,
|
|
399
|
+
"followCamera": true,
|
|
314
400
|
"jumpEvent": "JUMP",
|
|
315
|
-
"
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
"from": "playing",
|
|
322
|
-
"to": "gameover",
|
|
323
|
-
"event": "GAME_OVER",
|
|
324
|
-
"effects": [
|
|
325
|
-
[
|
|
326
|
-
"render-ui",
|
|
327
|
-
"main",
|
|
328
|
-
{
|
|
329
|
-
"type": "game-over-screen",
|
|
330
|
-
"title": "Game Over",
|
|
331
|
-
"stats": [
|
|
332
|
-
{
|
|
333
|
-
"label": "Score",
|
|
334
|
-
"value": "@entity.score"
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
"label": "Lives",
|
|
338
|
-
"value": "@entity.lives"
|
|
339
|
-
}
|
|
340
|
-
],
|
|
341
|
-
"menuItems": [
|
|
342
|
-
{
|
|
343
|
-
"label": "Play Again",
|
|
344
|
-
"event": "RESTART",
|
|
345
|
-
"variant": "primary"
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"label": "Main Menu",
|
|
349
|
-
"event": "RESTART",
|
|
350
|
-
"variant": "secondary"
|
|
351
|
-
}
|
|
352
|
-
]
|
|
401
|
+
"rightEvent": "RIGHT",
|
|
402
|
+
"worldHeight": 400.0,
|
|
403
|
+
"stopEvent": "STOP",
|
|
404
|
+
"canvasHeight": 400.0,
|
|
405
|
+
"worldWidth": 2400.0,
|
|
406
|
+
"bgColor": "#1a1a2e"
|
|
353
407
|
}
|
|
354
408
|
]
|
|
355
409
|
]
|
|
356
410
|
},
|
|
357
411
|
{
|
|
358
|
-
"from": "
|
|
412
|
+
"from": "paused",
|
|
359
413
|
"to": "menu",
|
|
360
414
|
"event": "RESTART",
|
|
361
415
|
"effects": [
|
|
416
|
+
[
|
|
417
|
+
"render-ui",
|
|
418
|
+
"modal",
|
|
419
|
+
null
|
|
420
|
+
],
|
|
362
421
|
[
|
|
363
422
|
"render-ui",
|
|
364
423
|
"main",
|
|
365
424
|
{
|
|
366
|
-
"type": "game-menu",
|
|
367
|
-
"title": "Platformer",
|
|
368
|
-
"subtitle": "Side-Scrolling Adventure",
|
|
369
425
|
"menuItems": [
|
|
370
426
|
{
|
|
427
|
+
"variant": "primary",
|
|
371
428
|
"label": "Start Game",
|
|
372
|
-
"event": "START"
|
|
373
|
-
"variant": "primary"
|
|
429
|
+
"event": "START"
|
|
374
430
|
}
|
|
375
|
-
]
|
|
431
|
+
],
|
|
432
|
+
"type": "game-menu",
|
|
433
|
+
"title": "Platformer",
|
|
434
|
+
"subtitle": "Side-Scrolling Adventure"
|
|
376
435
|
}
|
|
377
436
|
]
|
|
378
437
|
]
|
|
379
438
|
},
|
|
380
439
|
{
|
|
381
|
-
"from": "
|
|
440
|
+
"from": "gameover",
|
|
382
441
|
"to": "menu",
|
|
383
442
|
"event": "RESTART",
|
|
384
443
|
"effects": [
|
|
385
|
-
[
|
|
386
|
-
"render-ui",
|
|
387
|
-
"modal",
|
|
388
|
-
null
|
|
389
|
-
],
|
|
390
444
|
[
|
|
391
445
|
"render-ui",
|
|
392
446
|
"main",
|
|
393
447
|
{
|
|
394
|
-
"type": "game-menu",
|
|
395
|
-
"title": "Platformer",
|
|
396
|
-
"subtitle": "Side-Scrolling Adventure",
|
|
397
448
|
"menuItems": [
|
|
398
449
|
{
|
|
399
450
|
"label": "Start Game",
|
|
400
|
-
"
|
|
401
|
-
"
|
|
451
|
+
"variant": "primary",
|
|
452
|
+
"event": "START"
|
|
402
453
|
}
|
|
403
|
-
]
|
|
454
|
+
],
|
|
455
|
+
"subtitle": "Side-Scrolling Adventure",
|
|
456
|
+
"title": "Platformer",
|
|
457
|
+
"type": "game-menu"
|
|
404
458
|
}
|
|
405
459
|
]
|
|
406
460
|
]
|
|
407
461
|
}
|
|
408
462
|
]
|
|
409
|
-
}
|
|
463
|
+
},
|
|
464
|
+
"scope": "instance"
|
|
410
465
|
},
|
|
411
466
|
{
|
|
412
467
|
"name": "PlatLevelPlatformerCanvas",
|
|
413
|
-
"linkedEntity": "PlatLevel",
|
|
414
468
|
"category": "interaction",
|
|
469
|
+
"linkedEntity": "PlatLevel",
|
|
470
|
+
"emits": [
|
|
471
|
+
{
|
|
472
|
+
"event": "PlatLevelLoaded",
|
|
473
|
+
"description": "Fired when PlatLevel finishes loading",
|
|
474
|
+
"scope": "internal",
|
|
475
|
+
"payload": [
|
|
476
|
+
{
|
|
477
|
+
"name": "id",
|
|
478
|
+
"type": "string"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"name": "name",
|
|
482
|
+
"type": "string"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"name": "description",
|
|
486
|
+
"type": "string"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "status",
|
|
490
|
+
"type": "string"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"name": "createdAt",
|
|
494
|
+
"type": "string"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"name": "score",
|
|
498
|
+
"type": "number"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "lives",
|
|
502
|
+
"type": "number"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"name": "player",
|
|
506
|
+
"type": "string"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"name": "platforms",
|
|
510
|
+
"type": "string"
|
|
511
|
+
}
|
|
512
|
+
]
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"event": "PlatLevelLoadFailed",
|
|
516
|
+
"description": "Fired when PlatLevel fails to load",
|
|
517
|
+
"scope": "internal",
|
|
518
|
+
"payload": [
|
|
519
|
+
{
|
|
520
|
+
"name": "message",
|
|
521
|
+
"type": "string"
|
|
522
|
+
}
|
|
523
|
+
]
|
|
524
|
+
}
|
|
525
|
+
],
|
|
415
526
|
"stateMachine": {
|
|
416
527
|
"states": [
|
|
417
528
|
{
|
|
@@ -427,13 +538,17 @@
|
|
|
427
538
|
"key": "INIT",
|
|
428
539
|
"name": "Initialize"
|
|
429
540
|
},
|
|
541
|
+
{
|
|
542
|
+
"key": "START",
|
|
543
|
+
"name": "Start"
|
|
544
|
+
},
|
|
430
545
|
{
|
|
431
546
|
"key": "LEFT",
|
|
432
|
-
"name": "
|
|
547
|
+
"name": "Left"
|
|
433
548
|
},
|
|
434
549
|
{
|
|
435
550
|
"key": "RIGHT",
|
|
436
|
-
"name": "
|
|
551
|
+
"name": "Right"
|
|
437
552
|
},
|
|
438
553
|
{
|
|
439
554
|
"key": "JUMP",
|
|
@@ -444,8 +559,18 @@
|
|
|
444
559
|
"name": "Stop"
|
|
445
560
|
},
|
|
446
561
|
{
|
|
447
|
-
"key": "
|
|
448
|
-
"name": "
|
|
562
|
+
"key": "PlatLevelLoaded",
|
|
563
|
+
"name": "PlatLevel loaded"
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"key": "PlatLevelLoadFailed",
|
|
567
|
+
"name": "PlatLevel load failed",
|
|
568
|
+
"payload": [
|
|
569
|
+
{
|
|
570
|
+
"name": "message",
|
|
571
|
+
"type": "string"
|
|
572
|
+
}
|
|
573
|
+
]
|
|
449
574
|
}
|
|
450
575
|
],
|
|
451
576
|
"transitions": [
|
|
@@ -456,7 +581,13 @@
|
|
|
456
581
|
"effects": [
|
|
457
582
|
[
|
|
458
583
|
"fetch",
|
|
459
|
-
"PlatLevel"
|
|
584
|
+
"PlatLevel",
|
|
585
|
+
{
|
|
586
|
+
"emit": {
|
|
587
|
+
"success": "PlatLevelLoaded",
|
|
588
|
+
"failure": "PlatLevelLoadFailed"
|
|
589
|
+
}
|
|
590
|
+
}
|
|
460
591
|
]
|
|
461
592
|
]
|
|
462
593
|
},
|
|
@@ -470,18 +601,18 @@
|
|
|
470
601
|
"main",
|
|
471
602
|
{
|
|
472
603
|
"type": "platformer-canvas",
|
|
473
|
-
"platforms": "@entity.platforms",
|
|
474
|
-
"player": "@entity.player",
|
|
475
|
-
"canvasWidth": 800,
|
|
476
|
-
"canvasHeight": 400,
|
|
477
|
-
"worldWidth": 2400,
|
|
478
|
-
"worldHeight": 400,
|
|
479
|
-
"followCamera": true,
|
|
480
|
-
"bgColor": "#1a1a2e",
|
|
481
|
-
"leftEvent": "LEFT",
|
|
482
604
|
"rightEvent": "RIGHT",
|
|
605
|
+
"leftEvent": "LEFT",
|
|
483
606
|
"jumpEvent": "JUMP",
|
|
484
|
-
"
|
|
607
|
+
"player": "@entity.player",
|
|
608
|
+
"canvasHeight": 400.0,
|
|
609
|
+
"platforms": "@entity.platforms",
|
|
610
|
+
"canvasWidth": 800.0,
|
|
611
|
+
"bgColor": "#1a1a2e",
|
|
612
|
+
"worldWidth": 2400.0,
|
|
613
|
+
"followCamera": true,
|
|
614
|
+
"stopEvent": "STOP",
|
|
615
|
+
"worldHeight": 400.0
|
|
485
616
|
}
|
|
486
617
|
]
|
|
487
618
|
]
|
|
@@ -489,20 +620,17 @@
|
|
|
489
620
|
{
|
|
490
621
|
"from": "running",
|
|
491
622
|
"to": "running",
|
|
492
|
-
"event": "LEFT"
|
|
493
|
-
"effects": []
|
|
623
|
+
"event": "LEFT"
|
|
494
624
|
},
|
|
495
625
|
{
|
|
496
626
|
"from": "running",
|
|
497
627
|
"to": "running",
|
|
498
|
-
"event": "RIGHT"
|
|
499
|
-
"effects": []
|
|
628
|
+
"event": "RIGHT"
|
|
500
629
|
},
|
|
501
630
|
{
|
|
502
631
|
"from": "running",
|
|
503
632
|
"to": "running",
|
|
504
|
-
"event": "JUMP"
|
|
505
|
-
"effects": []
|
|
633
|
+
"event": "JUMP"
|
|
506
634
|
},
|
|
507
635
|
{
|
|
508
636
|
"from": "running",
|
|
@@ -513,25 +641,26 @@
|
|
|
513
641
|
"render-ui",
|
|
514
642
|
"main",
|
|
515
643
|
{
|
|
644
|
+
"rightEvent": "RIGHT",
|
|
645
|
+
"worldWidth": 2400.0,
|
|
646
|
+
"jumpEvent": "JUMP",
|
|
647
|
+
"canvasHeight": 400.0,
|
|
516
648
|
"type": "platformer-canvas",
|
|
517
|
-
"platforms": "@entity.platforms",
|
|
518
|
-
"player": "@entity.player",
|
|
519
|
-
"canvasWidth": 800,
|
|
520
|
-
"canvasHeight": 400,
|
|
521
|
-
"worldWidth": 2400,
|
|
522
|
-
"worldHeight": 400,
|
|
523
649
|
"followCamera": true,
|
|
650
|
+
"worldHeight": 400.0,
|
|
651
|
+
"canvasWidth": 800.0,
|
|
652
|
+
"stopEvent": "STOP",
|
|
653
|
+
"player": "@entity.player",
|
|
524
654
|
"bgColor": "#1a1a2e",
|
|
525
|
-
"
|
|
526
|
-
"
|
|
527
|
-
"jumpEvent": "JUMP",
|
|
528
|
-
"stopEvent": "STOP"
|
|
655
|
+
"platforms": "@entity.platforms",
|
|
656
|
+
"leftEvent": "LEFT"
|
|
529
657
|
}
|
|
530
658
|
]
|
|
531
659
|
]
|
|
532
660
|
}
|
|
533
661
|
]
|
|
534
|
-
}
|
|
662
|
+
},
|
|
663
|
+
"scope": "instance"
|
|
535
664
|
}
|
|
536
665
|
],
|
|
537
666
|
"pages": [
|
|
@@ -550,4 +679,4 @@
|
|
|
550
679
|
]
|
|
551
680
|
}
|
|
552
681
|
]
|
|
553
|
-
}
|
|
682
|
+
}
|