feat(nav): add GameState.set_current_room and AudioManager.DEFAULT_MUSIC_VOLUME

This commit is contained in:
Steven Wroblewski
2026-05-10 20:53:25 +02:00
parent 43a7e6bde4
commit c2edaf2761
4 changed files with 23 additions and 0 deletions
+5
View File
@@ -73,6 +73,11 @@ func clear_chest_state(chest_id: String) -> void:
state_changed.emit()
func set_current_room(room: String) -> void:
current_room = room
state_changed.emit()
func get_save_data() -> Dictionary:
var positions: Dictionary = {}
for key: String in _character_positions: