beta-1.5 (#4)

Reviewed-on: #4
This commit was merged in pull request #4.
This commit is contained in:
2026-03-28 20:34:59 -06:00
parent 5fb4a96159
commit 7cd34cb07e
32 changed files with 445 additions and 66 deletions

View File

@@ -0,0 +1,8 @@
extends Node
# Public Methods
func GetMovementComponent(container: Node) -> MovementComponent:
for node in container.get_children():
if node is MovementComponent:
return node
return null

View File

@@ -0,0 +1 @@
uid://cf5j2r4gpceng

View File

@@ -1,10 +1,14 @@
extends Node
const ERROR_404_MAP = preload("uid://durt8y2ovs6me")
const TITLE_SCREEN = preload("uid://be4nw563yydcr")
const HOME_01 = preload("uid://laxewy7irxno")
const PATH_TO_DUNGEON_01 = preload("uid://b07m0k40dh042")
const SHOP = preload("uid://bwt0ijoq4qmhn")
@onready var mapping := {
Enums.MapIds.ERROR_404: ERROR_404_MAP,
Enums.MapIds.TITLE_SCREEN: TITLE_SCREEN,
Enums.MapIds.SHOP_01: SHOP,
Enums.MapIds.PATH_TO_FOREST_DUNGEON_01: PATH_TO_DUNGEON_01,
Enums.MapIds.PATH_TO_FOREST_HOME_01: HOME_01