aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/GlobalClass/GameDebug.gd
diff options
context:
space:
mode:
Diffstat (limited to 'game/src/Game/GlobalClass/GameDebug.gd')
-rw-r--r--game/src/Game/GlobalClass/GameDebug.gd26
1 files changed, 26 insertions, 0 deletions
diff --git a/game/src/Game/GlobalClass/GameDebug.gd b/game/src/Game/GlobalClass/GameDebug.gd
new file mode 100644
index 0000000..08d2b8b
--- /dev/null
+++ b/game/src/Game/GlobalClass/GameDebug.gd
@@ -0,0 +1,26 @@
+class_name GameDebug
+extends RefCounted
+
+static var _singleton : GameDebug
+
+static var debug_mode : bool:
+ get = is_debug_mode, set = set_debug_mode
+
+static func set_debug_mode(value : bool) -> void:
+ if _singleton == null:
+ push_warning("Debug mode could not be set.")
+ return
+ _singleton._set_debug_mode(value)
+
+static func is_debug_mode() -> bool:
+ if _singleton == null:
+ push_warning("Could not get debug mode, returning false.")
+ return false
+ return _singleton._is_debug_mode()
+
+func _set_debug_mode(value : bool) -> void:
+ ArgumentParser.set_argument(&"game-debug", value)
+ print("Set debug mode to: ", value)
+
+func _is_debug_mode() -> bool:
+ return ArgumentParser.get_argument(&"game-debug", false)