progress on new options screen

This commit is contained in:
Haze Weathers 2023-11-05 21:09:44 -05:00
parent 6ed5743144
commit 69d6a4b4f7
12 changed files with 1000 additions and 39 deletions

View file

@ -29,6 +29,11 @@ _global_script_classes=[ {
"language": "GDScript",
"path": "res://addons/godot_state_charts/parallel_state.gd"
}, {
"base": "HBoxContainer",
"class": "RadioButtons",
"language": "GDScript",
"path": "res://objects/hud/radio_buttons.gd"
}, {
"base": "Node",
"class": "State",
"language": "GDScript",
@ -54,6 +59,7 @@ _global_script_class_icons={
"CompoundState": "res://addons/godot_state_charts/compound_state.svg",
"LevelEntry": "",
"ParallelState": "res://addons/godot_state_charts/parallel_state.svg",
"RadioButtons": "",
"State": "res://addons/godot_state_charts/state.svg",
"StateChart": "res://addons/godot_state_charts/state_chart.svg",
"StateChartDebug": "",
@ -71,10 +77,10 @@ config/icon="res://icon.png"
[autoload]
Border="*res://autoloads/border.tscn"
Audio="*res://autoloads/audio.tscn"
Options="*res://autoloads/options.gd"
Save="*res://autoloads/save.gd"
Game="*res://autoloads/game.gd"
Audio="*res://autoloads/audio.tscn"
LevelData="*res://autoloads/level_data.tscn"
Debug="*res://autoloads/debug.tscn"
TouchControls="*res://autoloads/touch_controls.tscn"