@waica/archetype-topdown 0.11.0 → 0.12.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/dist/registry-data.js +2 -1
- package/package.json +3 -3
package/dist/registry-data.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AnimatedSprite, Hitbox, Solid, Sprite, StateMachine, Tilemap, } from '@waica/engine';
|
|
2
|
-
import { Chaser, ClickToMove, Collectible, Hazard, Health, Interactable, Lifetime, Patrol, Respawnable, TopDownMotor, } from '@waica/behaviors';
|
|
2
|
+
import { Chaser, ClickToMove, Collectible, Hazard, Health, Interactable, Lifetime, Patrol, Respawnable, SceneTransition, TopDownMotor, } from '@waica/behaviors';
|
|
3
3
|
import { TOPDOWN_ART } from './art.js';
|
|
4
4
|
import { TOPDOWN_PREFABS } from './prefabs.js';
|
|
5
5
|
import { TOPDOWN_UI } from './ui.js';
|
|
@@ -29,6 +29,7 @@ export const TOPDOWN_REGISTRY_DATA = {
|
|
|
29
29
|
// Opt-in: not on the topdown player prefab by default (CA-9), but
|
|
30
30
|
// registered so the editor's component picker can add it.
|
|
31
31
|
ClickToMove,
|
|
32
|
+
SceneTransition,
|
|
32
33
|
},
|
|
33
34
|
resolveAsset: (uri) => PACKAGE_ASSETS[uri] ?? uri,
|
|
34
35
|
prefabs: TOPDOWN_PREFABS,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@waica/archetype-topdown",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Waica top-down archetype — opinionated setup for Zelda-like overhead adventures",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@waica/behaviors": "^0.
|
|
28
|
-
"@waica/engine": "^0.
|
|
27
|
+
"@waica/behaviors": "^0.12.0",
|
|
28
|
+
"@waica/engine": "^0.12.0"
|
|
29
29
|
}
|
|
30
30
|
}
|