Bug fixes and other fixes. Migration to Godot 4.3 (RC3)
This commit is contained in:
patrick_pluto 2024-08-11 19:43:03 +02:00
commit f3350a462a
50 changed files with 578 additions and 478 deletions

7
scripts/settings_text.gd Normal file
View file

@ -0,0 +1,7 @@
extends TextEdit
func _ready():
text = Game.settings[get_parent().name]
func _on_text_changed():
Game.save_setting(get_parent().name, text)