refactor: clarify simulation ownership

This commit is contained in:
Rijad Zuzo
2026-07-10 11:02:11 +02:00
parent 0f7b12080e
commit ce8f71082b
29 changed files with 793 additions and 587 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
extends Node
const DEBUG_LOGS := true
@export var debug_logs := false
@export var npc_visual_scene: PackedScene
@export var simulation_manager: Node
@@ -10,7 +10,7 @@ var active_npc_visuals := {}
func debug_log(message: String) -> void:
if DEBUG_LOGS:
if debug_logs:
print("[WorldViewManager] ", message)