Hide UID files in VSCode

This commit is contained in:
2025-01-19 22:10:08 -06:00
parent 163c37ffe3
commit 43d6f58763
7 changed files with 55 additions and 25 deletions

View File

@@ -7,11 +7,9 @@ func _ready() -> void:
func _on_body_entered(body: Node3D) -> void:
if (!body is OverworldEntity):
return
print("Entered overworld ent")
(body as OverworldEntity).withinMapBounds = self;
func _on_body_exited(body: Node3D) -> void:
if (!body is OverworldEntity):
return
print("Entered overworld ent")
(body as OverworldEntity).withinMapBounds = null;