mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-07 14:04:48 -04:00
I learned C# primarily for game development but held off switching to it on Godot 3 because it was still rough around edges - crashed way too many times. It seems to be working as it should as of 3.1.1 and that's why I'm rewriting all the GDScript portions in C# as much as possible. However, this does make it incompatible with the Steam version, as of this writing, until the Godot devs decide how they want to publish it in future updates.
57 lines
1.6 KiB
Text
57 lines
1.6 KiB
Text
; Engine configuration file.
|
|
; It's best edited using the editor UI and not directly,
|
|
; since the parameters that go here are not all obvious.
|
|
;
|
|
; Format:
|
|
; [section] ; section goes between []
|
|
; param=value ; assign values to parameters
|
|
|
|
config_version=4
|
|
|
|
_global_script_classes=[ ]
|
|
_global_script_class_icons={
|
|
|
|
}
|
|
|
|
[application]
|
|
|
|
config/name="Nathan's Dress Up"
|
|
run/main_scene="res://scn/TitleScn.tscn"
|
|
config/use_custom_user_dir=true
|
|
boot_splash/image="res://icon.png"
|
|
boot_splash/bg_color=Color( 0.8, 0.8, 0.4, 1 )
|
|
config/icon="res://icon.png"
|
|
name_sv="Nathans klä upp"
|
|
|
|
[debug]
|
|
|
|
gdscript/completion/autocomplete_setters_and_getters=true
|
|
|
|
[display]
|
|
|
|
window/dpi/allow_hidpi=true
|
|
window/stretch/mode="viewport"
|
|
window/stretch/aspect="keep"
|
|
|
|
[input]
|
|
|
|
ui_pause={
|
|
"deadzone": 0.5,
|
|
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null)
|
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":11,"pressure":0.0,"pressed":false,"script":null)
|
|
]
|
|
}
|
|
|
|
[locale]
|
|
|
|
locale_filter=[ 1, [ "en", "sv" ] ]
|
|
translations=PoolStringArray( "res://lang/local.en.translation", "res://lang/local.sv.translation" )
|
|
|
|
[rendering]
|
|
|
|
quality/intended_usage/framebuffer_allocation=0
|
|
quality/intended_usage/framebuffer_allocation.mobile=0
|
|
quality/2d/use_pixel_snap=true
|
|
vram_compression/import_etc=true
|
|
environment/default_environment="res://default_env.tres"
|
|
quality/dynamic_fonts/use_oversampling=false
|