diff options
| author | dam <dam@gudinoff> | 2021-12-16 01:17:34 +0000 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2021-12-16 01:17:34 +0000 |
| commit | 9724fb73abf9fd3760a4f3f3ac941a119708c97b (patch) | |
| tree | 1892493f0e922a3c0b99c049a7039771d739dea7 /project.godot | |
| parent | ecd75887d99d887aabe828f4511d9fd3e1c41428 (diff) | |
| download | surgery-log-9724fb73abf9fd3760a4f3f3ac941a119708c97b.tar.zst surgery-log-9724fb73abf9fd3760a4f3f3ac941a119708c97b.zip | |
First prototype with working database and staging area.
Fix incorrect warp in date picker.
Disable physics engine.
Diffstat (limited to 'project.godot')
| -rw-r--r-- | project.godot | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/project.godot b/project.godot index 6657a50..41969be 100644 --- a/project.godot +++ b/project.godot @@ -9,18 +9,30 @@ config_version=4 _global_script_classes=[ { +"base": "ItemList", +"class": "Database", +"language": "GDScript", +"path": "res://logic/database.gd" +}, { "base": "Control", "class": "DatePicker", "language": "GDScript", "path": "res://date_picker/date_picker.gd" }, { "base": "Control", +"class": "Stage", +"language": "GDScript", +"path": "res://logic/stage.gd" +}, { +"base": "Control", "class": "ValuePicker", "language": "GDScript", "path": "res://date_picker/value_picker.gd" } ] _global_script_class_icons={ +"Database": "", "DatePicker": "", +"Stage": "", "ValuePicker": "" } @@ -28,11 +40,12 @@ _global_script_class_icons={ config/name="Surgery Log" run/main_scene="res://main.tscn" -boot_splash/image="res://icon.png" +boot_splash/image="res://icons/icon.png" boot_splash/fullsize=false boot_splash/use_filter=false boot_splash/bg_color=Color( 0, 0, 0, 1 ) -config/icon="res://icon.png" +config/icon="res://icons/icon.png" +config/quit_on_go_back=false [display] |
