This commit is contained in:
2025-05-05 10:55:45 -05:00
parent 65a3d49f55
commit 7106469bd1
8 changed files with 13 additions and 8 deletions

View File

@@ -148,8 +148,8 @@ func _process(delta:float) -> void:
# Handle entity leaving map bounds
if !withinMapBounds:
if !withinBoundsLastFrame:
print("Entity ", self.name, " was out of map bounds for two frames");
# if !withinBoundsLastFrame:
# print("Entity ", self.name, " was out of map bounds for two frames");
withinBoundsLastFrame = false;
else:
withinBoundsLastFrame = true;