GMTK-2024/gmtk_2024/project.godot

57 lines
2 KiB
Text
Raw Normal View History

2024-08-16 18:00:51 +02:00
; 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=5
[application]
config/name="GMTK_2024"
2024-08-17 00:32:52 +02:00
run/main_scene="res://levels/TestingField.tscn"
2024-08-16 18:00:51 +02:00
config/features=PackedStringArray("4.3", "GL Compatibility")
2024-08-17 00:39:35 +02:00
config/icon="res://temp_assets/icon.svg"
2024-08-16 18:00:51 +02:00
2024-08-16 21:42:27 +02:00
[display]
window/size/viewport_width=1280
window/size/viewport_height=720
window/size/mode=2
window/stretch/mode="viewport"
2024-08-16 21:03:06 +02:00
[input]
player_right={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"location":0,"echo":false,"script":null)
]
}
player_left={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null)
]
}
2024-08-16 22:09:19 +02:00
player_jump={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null)
]
}
2024-08-16 21:03:06 +02:00
2024-08-17 16:10:08 +02:00
[layer_names]
2d_render/layer_1="Ground"
2d_render/layer_2="Enemies"
2d_render/layer_3="Player"
2d_render/layer_4="Goal"
2024-08-16 18:00:51 +02:00
[rendering]
2024-08-17 01:19:19 +02:00
textures/canvas_textures/default_texture_filter=0
2024-08-16 18:00:51 +02:00
renderer/rendering_method="gl_compatibility"
renderer/rendering_method.mobile="gl_compatibility"
2024-08-17 01:19:19 +02:00
environment/defaults/default_clear_color=Color(0.785573, 0.700355, 0.83902, 1)
2024-08-16 21:42:27 +02:00
2d/snap/snap_2d_transforms_to_pixel=true