Basic dialog system working

This commit is contained in:
2026-03-16 08:57:53 +11:00
parent 336dd59dbb
commit b433c31261
7 changed files with 45 additions and 26 deletions

View File

@@ -9,8 +9,14 @@ const LOREM_IPSUM = [
"",
]
static var input_enabled: bool = true:
get():
return input_enabled
set(value):
input_enabled = value
static var godmode: bool = false:
get:
get():
return godmode
func _process(_delta: float) -> void: