diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2025-03-10 18:22:09 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2025-03-10 18:22:09 +0100 |
commit | 440020e642f539079867577435a9f8b02075699b (patch) | |
tree | 99acccfc1574a8ffc656d6f64ff934949edb1f52 /map/town_01/town_01.gd |
Diffstat (limited to 'map/town_01/town_01.gd')
-rw-r--r-- | map/town_01/town_01.gd | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/map/town_01/town_01.gd b/map/town_01/town_01.gd new file mode 100644 index 0000000..54b0911 --- /dev/null +++ b/map/town_01/town_01.gd @@ -0,0 +1,9 @@ +extends Map + + +func _ready() -> void: + super._ready() + + +func _on_visible_on_screen_notifier_2d_screen_entered() -> void: + Game.world.add_map("res://map/route_01/route_01.tscn") |