@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-isometric-canvas",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-isometric-canvas as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "IsometricWorldOrbital",
|
|
@@ -37,352 +37,84 @@
|
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
"name": "tiles",
|
|
40
|
-
"type": "array"
|
|
40
|
+
"type": "array",
|
|
41
|
+
"items": {
|
|
42
|
+
"type": "string"
|
|
43
|
+
}
|
|
41
44
|
},
|
|
42
45
|
{
|
|
43
46
|
"name": "units",
|
|
44
|
-
"type": "array"
|
|
47
|
+
"type": "array",
|
|
48
|
+
"items": {
|
|
49
|
+
"type": "string"
|
|
50
|
+
}
|
|
45
51
|
},
|
|
46
52
|
{
|
|
47
53
|
"name": "features",
|
|
48
|
-
"type": "array"
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
{
|
|
53
|
-
"id": "board",
|
|
54
|
-
"tiles": [
|
|
55
|
-
{
|
|
56
|
-
"x": 0,
|
|
57
|
-
"y": 0,
|
|
58
|
-
"terrain": "grass"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"x": 1,
|
|
62
|
-
"y": 0,
|
|
63
|
-
"terrain": "dirt"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"x": 2,
|
|
67
|
-
"y": 0,
|
|
68
|
-
"terrain": "stone"
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"x": 3,
|
|
72
|
-
"y": 0,
|
|
73
|
-
"terrain": "water"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"x": 4,
|
|
77
|
-
"y": 0,
|
|
78
|
-
"terrain": "sand"
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"x": 5,
|
|
82
|
-
"y": 0,
|
|
83
|
-
"terrain": "grass"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"x": 6,
|
|
87
|
-
"y": 0,
|
|
88
|
-
"terrain": "dirt"
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
"x": 7,
|
|
92
|
-
"y": 0,
|
|
93
|
-
"terrain": "stone"
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
"x": 0,
|
|
97
|
-
"y": 1,
|
|
98
|
-
"terrain": "dirt"
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"x": 1,
|
|
102
|
-
"y": 1,
|
|
103
|
-
"terrain": "stone"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"x": 2,
|
|
107
|
-
"y": 1,
|
|
108
|
-
"terrain": "water"
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"x": 3,
|
|
112
|
-
"y": 1,
|
|
113
|
-
"terrain": "sand"
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"x": 4,
|
|
117
|
-
"y": 1,
|
|
118
|
-
"terrain": "grass"
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"x": 5,
|
|
122
|
-
"y": 1,
|
|
123
|
-
"terrain": "dirt"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"x": 6,
|
|
127
|
-
"y": 1,
|
|
128
|
-
"terrain": "stone"
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"x": 7,
|
|
132
|
-
"y": 1,
|
|
133
|
-
"terrain": "water"
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"x": 0,
|
|
137
|
-
"y": 2,
|
|
138
|
-
"terrain": "stone"
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"x": 1,
|
|
142
|
-
"y": 2,
|
|
143
|
-
"terrain": "water"
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
"x": 2,
|
|
147
|
-
"y": 2,
|
|
148
|
-
"terrain": "sand"
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
"x": 3,
|
|
152
|
-
"y": 2,
|
|
153
|
-
"terrain": "grass"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"x": 4,
|
|
157
|
-
"y": 2,
|
|
158
|
-
"terrain": "dirt"
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"x": 5,
|
|
162
|
-
"y": 2,
|
|
163
|
-
"terrain": "stone"
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"x": 6,
|
|
167
|
-
"y": 2,
|
|
168
|
-
"terrain": "water"
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"x": 7,
|
|
172
|
-
"y": 2,
|
|
173
|
-
"terrain": "sand"
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
"x": 0,
|
|
177
|
-
"y": 3,
|
|
178
|
-
"terrain": "water"
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"x": 1,
|
|
182
|
-
"y": 3,
|
|
183
|
-
"terrain": "sand"
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"x": 2,
|
|
187
|
-
"y": 3,
|
|
188
|
-
"terrain": "grass"
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"x": 3,
|
|
192
|
-
"y": 3,
|
|
193
|
-
"terrain": "dirt"
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
"x": 4,
|
|
197
|
-
"y": 3,
|
|
198
|
-
"terrain": "stone"
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
"x": 5,
|
|
202
|
-
"y": 3,
|
|
203
|
-
"terrain": "water"
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
"x": 6,
|
|
207
|
-
"y": 3,
|
|
208
|
-
"terrain": "sand"
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"x": 7,
|
|
212
|
-
"y": 3,
|
|
213
|
-
"terrain": "grass"
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"x": 0,
|
|
217
|
-
"y": 4,
|
|
218
|
-
"terrain": "sand"
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
"x": 1,
|
|
222
|
-
"y": 4,
|
|
223
|
-
"terrain": "grass"
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
"x": 2,
|
|
227
|
-
"y": 4,
|
|
228
|
-
"terrain": "dirt"
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
"x": 3,
|
|
232
|
-
"y": 4,
|
|
233
|
-
"terrain": "stone"
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"x": 4,
|
|
237
|
-
"y": 4,
|
|
238
|
-
"terrain": "water"
|
|
239
|
-
},
|
|
240
|
-
{
|
|
241
|
-
"x": 5,
|
|
242
|
-
"y": 4,
|
|
243
|
-
"terrain": "sand"
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"x": 6,
|
|
247
|
-
"y": 4,
|
|
248
|
-
"terrain": "grass"
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"x": 7,
|
|
252
|
-
"y": 4,
|
|
253
|
-
"terrain": "dirt"
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
"x": 0,
|
|
257
|
-
"y": 5,
|
|
258
|
-
"terrain": "grass"
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"x": 1,
|
|
262
|
-
"y": 5,
|
|
263
|
-
"terrain": "dirt"
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
"x": 2,
|
|
267
|
-
"y": 5,
|
|
268
|
-
"terrain": "stone"
|
|
269
|
-
},
|
|
270
|
-
{
|
|
271
|
-
"x": 3,
|
|
272
|
-
"y": 5,
|
|
273
|
-
"terrain": "water"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"x": 4,
|
|
277
|
-
"y": 5,
|
|
278
|
-
"terrain": "sand"
|
|
279
|
-
},
|
|
280
|
-
{
|
|
281
|
-
"x": 5,
|
|
282
|
-
"y": 5,
|
|
283
|
-
"terrain": "grass"
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
"x": 6,
|
|
287
|
-
"y": 5,
|
|
288
|
-
"terrain": "dirt"
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
"x": 7,
|
|
292
|
-
"y": 5,
|
|
293
|
-
"terrain": "stone"
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
"x": 0,
|
|
297
|
-
"y": 6,
|
|
298
|
-
"terrain": "dirt"
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
"x": 1,
|
|
302
|
-
"y": 6,
|
|
303
|
-
"terrain": "stone"
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"x": 2,
|
|
307
|
-
"y": 6,
|
|
308
|
-
"terrain": "water"
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"x": 3,
|
|
312
|
-
"y": 6,
|
|
313
|
-
"terrain": "sand"
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"x": 4,
|
|
317
|
-
"y": 6,
|
|
318
|
-
"terrain": "grass"
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
"x": 5,
|
|
322
|
-
"y": 6,
|
|
323
|
-
"terrain": "dirt"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"x": 6,
|
|
327
|
-
"y": 6,
|
|
328
|
-
"terrain": "stone"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"x": 7,
|
|
332
|
-
"y": 6,
|
|
333
|
-
"terrain": "water"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"x": 0,
|
|
337
|
-
"y": 7,
|
|
338
|
-
"terrain": "stone"
|
|
339
|
-
},
|
|
340
|
-
{
|
|
341
|
-
"x": 1,
|
|
342
|
-
"y": 7,
|
|
343
|
-
"terrain": "water"
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"x": 2,
|
|
347
|
-
"y": 7,
|
|
348
|
-
"terrain": "sand"
|
|
349
|
-
},
|
|
350
|
-
{
|
|
351
|
-
"x": 3,
|
|
352
|
-
"y": 7,
|
|
353
|
-
"terrain": "grass"
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"x": 4,
|
|
357
|
-
"y": 7,
|
|
358
|
-
"terrain": "dirt"
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
"x": 5,
|
|
362
|
-
"y": 7,
|
|
363
|
-
"terrain": "stone"
|
|
364
|
-
},
|
|
365
|
-
{
|
|
366
|
-
"x": 6,
|
|
367
|
-
"y": 7,
|
|
368
|
-
"terrain": "water"
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
"x": 7,
|
|
372
|
-
"y": 7,
|
|
373
|
-
"terrain": "sand"
|
|
374
|
-
}
|
|
375
|
-
],
|
|
376
|
-
"units": [],
|
|
377
|
-
"features": []
|
|
54
|
+
"type": "array",
|
|
55
|
+
"items": {
|
|
56
|
+
"type": "string"
|
|
57
|
+
}
|
|
378
58
|
}
|
|
379
59
|
]
|
|
380
60
|
},
|
|
381
61
|
"traits": [
|
|
382
62
|
{
|
|
383
63
|
"name": "IsometricWorldIsometricCanvas",
|
|
384
|
-
"linkedEntity": "IsometricWorld",
|
|
385
64
|
"category": "interaction",
|
|
65
|
+
"linkedEntity": "IsometricWorld",
|
|
66
|
+
"emits": [
|
|
67
|
+
{
|
|
68
|
+
"event": "IsometricWorldLoaded",
|
|
69
|
+
"description": "Fired when IsometricWorld finishes loading",
|
|
70
|
+
"scope": "internal",
|
|
71
|
+
"payload": [
|
|
72
|
+
{
|
|
73
|
+
"name": "id",
|
|
74
|
+
"type": "string"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "name",
|
|
78
|
+
"type": "string"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "description",
|
|
82
|
+
"type": "string"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "status",
|
|
86
|
+
"type": "string"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "createdAt",
|
|
90
|
+
"type": "string"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "tiles",
|
|
94
|
+
"type": "[string]"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "units",
|
|
98
|
+
"type": "[string]"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "features",
|
|
102
|
+
"type": "[string]"
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"event": "IsometricWorldLoadFailed",
|
|
108
|
+
"description": "Fired when IsometricWorld fails to load",
|
|
109
|
+
"scope": "internal",
|
|
110
|
+
"payload": [
|
|
111
|
+
{
|
|
112
|
+
"name": "message",
|
|
113
|
+
"type": "string"
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
}
|
|
117
|
+
],
|
|
386
118
|
"stateMachine": {
|
|
387
119
|
"states": [
|
|
388
120
|
{
|
|
@@ -431,6 +163,20 @@
|
|
|
431
163
|
{
|
|
432
164
|
"key": "DESELECT",
|
|
433
165
|
"name": "Deselect"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"key": "IsometricWorldLoaded",
|
|
169
|
+
"name": "IsometricWorld loaded"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"key": "IsometricWorldLoadFailed",
|
|
173
|
+
"name": "IsometricWorld load failed",
|
|
174
|
+
"payload": [
|
|
175
|
+
{
|
|
176
|
+
"name": "message",
|
|
177
|
+
"type": "string"
|
|
178
|
+
}
|
|
179
|
+
]
|
|
434
180
|
}
|
|
435
181
|
],
|
|
436
182
|
"transitions": [
|
|
@@ -441,25 +187,31 @@
|
|
|
441
187
|
"effects": [
|
|
442
188
|
[
|
|
443
189
|
"fetch",
|
|
444
|
-
"IsometricWorld"
|
|
190
|
+
"IsometricWorld",
|
|
191
|
+
{
|
|
192
|
+
"emit": {
|
|
193
|
+
"failure": "IsometricWorldLoadFailed",
|
|
194
|
+
"success": "IsometricWorldLoaded"
|
|
195
|
+
}
|
|
196
|
+
}
|
|
445
197
|
],
|
|
446
198
|
[
|
|
447
199
|
"render-ui",
|
|
448
200
|
"main",
|
|
449
201
|
{
|
|
450
|
-
"
|
|
451
|
-
"
|
|
452
|
-
"boardWidth": 8,
|
|
453
|
-
"boardHeight": 8,
|
|
454
|
-
"scale": 1,
|
|
455
|
-
"unitScale": 2,
|
|
456
|
-
"debug": false,
|
|
457
|
-
"showMinimap": false,
|
|
202
|
+
"tileHoverEvent": "TILE_HOVER",
|
|
203
|
+
"tileLeaveEvent": "TILE_LEAVE",
|
|
458
204
|
"enableCamera": true,
|
|
205
|
+
"unitScale": 2.0,
|
|
206
|
+
"tiles": "@entity.tiles",
|
|
459
207
|
"tileClickEvent": "TILE_CLICK",
|
|
460
208
|
"unitClickEvent": "UNIT_CLICK",
|
|
461
|
-
"
|
|
462
|
-
"
|
|
209
|
+
"boardWidth": 8.0,
|
|
210
|
+
"type": "isometric-canvas",
|
|
211
|
+
"scale": 1.0,
|
|
212
|
+
"showMinimap": false,
|
|
213
|
+
"boardHeight": 8.0,
|
|
214
|
+
"debug": false
|
|
463
215
|
}
|
|
464
216
|
]
|
|
465
217
|
]
|
|
@@ -473,19 +225,19 @@
|
|
|
473
225
|
"render-ui",
|
|
474
226
|
"main",
|
|
475
227
|
{
|
|
228
|
+
"scale": 1.0,
|
|
229
|
+
"debug": false,
|
|
476
230
|
"type": "isometric-canvas",
|
|
231
|
+
"unitClickEvent": "UNIT_CLICK",
|
|
232
|
+
"boardWidth": 8.0,
|
|
477
233
|
"tiles": "@entity.tiles",
|
|
478
|
-
"
|
|
479
|
-
"
|
|
480
|
-
"scale": 1,
|
|
481
|
-
"unitScale": 2,
|
|
482
|
-
"debug": false,
|
|
234
|
+
"boardHeight": 8.0,
|
|
235
|
+
"unitScale": 2.0,
|
|
483
236
|
"showMinimap": false,
|
|
484
|
-
"enableCamera": true,
|
|
485
|
-
"tileClickEvent": "TILE_CLICK",
|
|
486
|
-
"unitClickEvent": "UNIT_CLICK",
|
|
487
237
|
"tileHoverEvent": "TILE_HOVER",
|
|
488
|
-
"
|
|
238
|
+
"tileClickEvent": "TILE_CLICK",
|
|
239
|
+
"tileLeaveEvent": "TILE_LEAVE",
|
|
240
|
+
"enableCamera": true
|
|
489
241
|
}
|
|
490
242
|
]
|
|
491
243
|
]
|
|
@@ -499,23 +251,33 @@
|
|
|
499
251
|
"render-ui",
|
|
500
252
|
"main",
|
|
501
253
|
{
|
|
502
|
-
"
|
|
254
|
+
"scale": 1.0,
|
|
503
255
|
"tiles": "@entity.tiles",
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
"
|
|
507
|
-
"unitScale": 2,
|
|
508
|
-
"debug": false,
|
|
256
|
+
"unitClickEvent": "UNIT_CLICK",
|
|
257
|
+
"boardWidth": 8.0,
|
|
258
|
+
"boardHeight": 8.0,
|
|
509
259
|
"showMinimap": false,
|
|
260
|
+
"tileLeaveEvent": "TILE_LEAVE",
|
|
261
|
+
"tileHoverEvent": "TILE_HOVER",
|
|
262
|
+
"unitScale": 2.0,
|
|
510
263
|
"enableCamera": true,
|
|
511
264
|
"tileClickEvent": "TILE_CLICK",
|
|
512
|
-
"
|
|
513
|
-
"
|
|
514
|
-
"tileLeaveEvent": "TILE_LEAVE"
|
|
265
|
+
"debug": false,
|
|
266
|
+
"type": "isometric-canvas"
|
|
515
267
|
}
|
|
516
268
|
]
|
|
517
269
|
]
|
|
518
270
|
},
|
|
271
|
+
{
|
|
272
|
+
"from": "idle",
|
|
273
|
+
"to": "idle",
|
|
274
|
+
"event": "TILE_HOVER"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"from": "idle",
|
|
278
|
+
"to": "idle",
|
|
279
|
+
"event": "TILE_LEAVE"
|
|
280
|
+
},
|
|
519
281
|
{
|
|
520
282
|
"from": "active",
|
|
521
283
|
"to": "active",
|
|
@@ -525,19 +287,19 @@
|
|
|
525
287
|
"render-ui",
|
|
526
288
|
"main",
|
|
527
289
|
{
|
|
528
|
-
"type": "isometric-canvas",
|
|
529
|
-
"tiles": "@entity.tiles",
|
|
530
|
-
"boardWidth": 8,
|
|
531
|
-
"boardHeight": 8,
|
|
532
|
-
"scale": 1,
|
|
533
|
-
"unitScale": 2,
|
|
534
290
|
"debug": false,
|
|
291
|
+
"scale": 1.0,
|
|
292
|
+
"tiles": "@entity.tiles",
|
|
293
|
+
"tileHoverEvent": "TILE_HOVER",
|
|
535
294
|
"showMinimap": false,
|
|
536
295
|
"enableCamera": true,
|
|
537
296
|
"tileClickEvent": "TILE_CLICK",
|
|
297
|
+
"tileLeaveEvent": "TILE_LEAVE",
|
|
298
|
+
"unitScale": 2.0,
|
|
538
299
|
"unitClickEvent": "UNIT_CLICK",
|
|
539
|
-
"
|
|
540
|
-
"
|
|
300
|
+
"boardWidth": 8.0,
|
|
301
|
+
"boardHeight": 8.0,
|
|
302
|
+
"type": "isometric-canvas"
|
|
541
303
|
}
|
|
542
304
|
]
|
|
543
305
|
]
|
|
@@ -551,19 +313,19 @@
|
|
|
551
313
|
"render-ui",
|
|
552
314
|
"main",
|
|
553
315
|
{
|
|
554
|
-
"
|
|
316
|
+
"enableCamera": true,
|
|
555
317
|
"tiles": "@entity.tiles",
|
|
556
|
-
"boardWidth": 8,
|
|
557
|
-
"
|
|
558
|
-
"scale": 1,
|
|
559
|
-
"unitScale": 2,
|
|
318
|
+
"boardWidth": 8.0,
|
|
319
|
+
"unitClickEvent": "UNIT_CLICK",
|
|
320
|
+
"scale": 1.0,
|
|
321
|
+
"unitScale": 2.0,
|
|
322
|
+
"boardHeight": 8.0,
|
|
560
323
|
"debug": false,
|
|
561
|
-
"showMinimap": false,
|
|
562
|
-
"enableCamera": true,
|
|
563
324
|
"tileClickEvent": "TILE_CLICK",
|
|
564
|
-
"
|
|
325
|
+
"showMinimap": false,
|
|
565
326
|
"tileHoverEvent": "TILE_HOVER",
|
|
566
|
-
"tileLeaveEvent": "TILE_LEAVE"
|
|
327
|
+
"tileLeaveEvent": "TILE_LEAVE",
|
|
328
|
+
"type": "isometric-canvas"
|
|
567
329
|
}
|
|
568
330
|
]
|
|
569
331
|
]
|
|
@@ -571,26 +333,12 @@
|
|
|
571
333
|
{
|
|
572
334
|
"from": "active",
|
|
573
335
|
"to": "active",
|
|
574
|
-
"event": "TILE_HOVER"
|
|
575
|
-
"effects": []
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
"from": "idle",
|
|
579
|
-
"to": "idle",
|
|
580
|
-
"event": "TILE_HOVER",
|
|
581
|
-
"effects": []
|
|
336
|
+
"event": "TILE_HOVER"
|
|
582
337
|
},
|
|
583
338
|
{
|
|
584
339
|
"from": "active",
|
|
585
340
|
"to": "active",
|
|
586
|
-
"event": "TILE_LEAVE"
|
|
587
|
-
"effects": []
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
"from": "idle",
|
|
591
|
-
"to": "idle",
|
|
592
|
-
"event": "TILE_LEAVE",
|
|
593
|
-
"effects": []
|
|
341
|
+
"event": "TILE_LEAVE"
|
|
594
342
|
},
|
|
595
343
|
{
|
|
596
344
|
"from": "active",
|
|
@@ -601,25 +349,26 @@
|
|
|
601
349
|
"render-ui",
|
|
602
350
|
"main",
|
|
603
351
|
{
|
|
604
|
-
"type": "isometric-canvas",
|
|
605
|
-
"tiles": "@entity.tiles",
|
|
606
|
-
"boardWidth": 8,
|
|
607
|
-
"boardHeight": 8,
|
|
608
|
-
"scale": 1,
|
|
609
|
-
"unitScale": 2,
|
|
610
|
-
"debug": false,
|
|
611
|
-
"showMinimap": false,
|
|
612
352
|
"enableCamera": true,
|
|
353
|
+
"boardWidth": 8.0,
|
|
354
|
+
"showMinimap": false,
|
|
355
|
+
"type": "isometric-canvas",
|
|
613
356
|
"tileClickEvent": "TILE_CLICK",
|
|
357
|
+
"unitScale": 2.0,
|
|
358
|
+
"scale": 1.0,
|
|
359
|
+
"debug": false,
|
|
614
360
|
"unitClickEvent": "UNIT_CLICK",
|
|
615
361
|
"tileHoverEvent": "TILE_HOVER",
|
|
616
|
-
"tileLeaveEvent": "TILE_LEAVE"
|
|
362
|
+
"tileLeaveEvent": "TILE_LEAVE",
|
|
363
|
+
"boardHeight": 8.0,
|
|
364
|
+
"tiles": "@entity.tiles"
|
|
617
365
|
}
|
|
618
366
|
]
|
|
619
367
|
]
|
|
620
368
|
}
|
|
621
369
|
]
|
|
622
|
-
}
|
|
370
|
+
},
|
|
371
|
+
"scope": "instance"
|
|
623
372
|
}
|
|
624
373
|
],
|
|
625
374
|
"pages": [
|
|
@@ -635,4 +384,4 @@
|
|
|
635
384
|
]
|
|
636
385
|
}
|
|
637
386
|
]
|
|
638
|
-
}
|
|
387
|
+
}
|