diff options
author | BrickPi <ajmach6@gmail.com> | 2024-01-19 22:52:24 +0100 |
---|---|---|
committer | BrickPi <ajmach6@gmail.com> | 2024-01-21 16:25:06 +0100 |
commit | 2940411cb33a64cd41c2d39ddf98aab54edc9f69 (patch) | |
tree | 8cefa44e20d3fd26f7ba083454ffdcbb43c1d05f /game/project.godot | |
parent | fb2561bd998f211d2099f811a6b6b25a57118160 (diff) |
Reorganise Asset File Structure
Diffstat (limited to 'game/project.godot')
-rw-r--r-- | game/project.godot | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/game/project.godot b/game/project.godot index d71668c..5a727ca 100644 --- a/game/project.godot +++ b/game/project.godot @@ -17,12 +17,16 @@ config/use_custom_user_dir=true config/features=PackedStringArray("4.2", "Forward Plus") boot_splash/bg_color=Color(0, 0, 0, 0) boot_splash/show_image=false -boot_splash/image="res://splash_assets/splash_image.png" -config/icon="res://art/OpenVicLogo.png" -config/macos_native_icon="res://art/OpenVic.icns" -config/windows_native_icon="res://art/OpenVic.ico" +boot_splash/image="res://assets/graphics/splash_image.png" +config/icon="res://assets/OpenVicLogo.png" +config/macos_native_icon="res://assets/OpenVic.icns" +config/windows_native_icon="res://assets/OpenVic.ico" config/project_settings_override.template="user://settings.cfg" +[audio] + +buses/default_bus_layout="res://assets/audio/default_bus_layout.tres" + [autoload] Resolution="*res://src/Game/Autoload/Resolution.gd" @@ -56,7 +60,7 @@ enabled=PackedStringArray("res://addons/keychain/plugin.cfg", "res://addons/open [gui] -theme/custom="res://theme/default_theme.tres" +theme/custom="res://assets/graphics/theme/default_theme.tres" [input] @@ -133,7 +137,7 @@ locale/country_short_name={ "United Kingdom": "UK", "United States of America": "USA" } -locale/localisation_path="res://localisation" +locale/localisation_path="res://assets/localisation/locales" [memory] |