This commit is contained in:
2025-04-29 05:55:53 -05:00
parent 7dd814453e
commit b98fdd0f29
137 changed files with 0 additions and 2021 deletions

View File

@@ -1,15 +0,0 @@
extends Area3D
class_name MapBounds
func _ready() -> void:
pass
func _on_body_entered(body: Node3D) -> void:
if (!body is OverworldEntity):
return
(body as OverworldEntity).withinMapBounds = self;
func _on_body_exited(body: Node3D) -> void:
if (!body is OverworldEntity):
return
(body as OverworldEntity).withinMapBounds = null;