GMTKJam2021/project.godot

80 lines
4.0 KiB
Plaintext
Raw Normal View History

2021-06-11 21:10:27 +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=4
2021-06-30 20:27:40 +02:00
_global_script_classes=[ {
"base": "Node2D",
"class": "DropOffPoint",
"language": "GDScript",
"path": "res://DropOffPoint.gd"
} ]
_global_script_class_icons={
"DropOffPoint": ""
}
2021-06-11 21:10:27 +02:00
[application]
2021-06-12 13:41:25 +02:00
config/name="City Bound"
2021-06-12 00:17:38 +02:00
run/main_scene="res://World.tscn"
2021-06-11 21:10:27 +02:00
config/icon="res://icon.png"
2021-06-11 21:22:22 +02:00
[display]
window/size/width=1280
window/size/height=720
2021-07-16 23:52:07 +02:00
window/size/fullscreen=true
2021-06-13 18:04:55 +02:00
window/stretch/mode="2d"
2021-06-11 21:22:22 +02:00
2021-06-25 22:09:04 +02:00
[input]
2021-07-11 21:58:49 +02:00
accelerate={
2021-06-25 22:09:04 +02:00
"deadzone": 0.5,
2021-07-11 21:58:49 +02:00
"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":87,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777232,"unicode":0,"echo":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":7,"pressure":0.0,"pressed":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":0,"pressure":0.0,"pressed":false,"script":null)
2021-06-25 22:09:04 +02:00
]
}
2021-07-11 21:58:49 +02:00
brake={
2021-06-25 22:09:04 +02:00
"deadzone": 0.5,
2021-07-11 21:58:49 +02:00
"events": [ Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":6,"pressure":0.0,"pressed":false,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":2,"pressure":0.0,"pressed":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":83,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777234,"unicode":0,"echo":false,"script":null)
2021-06-25 22:09:04 +02:00
]
}
2021-07-11 21:58:49 +02:00
left={
2021-06-25 22:09:04 +02:00
"deadzone": 0.5,
2021-07-11 21:58:49 +02:00
"events": [ Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":0,"axis_value":-1.0,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":14,"pressure":0.0,"pressed":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777231,"unicode":0,"echo":false,"script":null)
2021-06-25 22:09:04 +02:00
]
}
2021-07-11 21:58:49 +02:00
right={
2021-06-25 22:09:04 +02:00
"deadzone": 0.5,
2021-07-11 21:58:49 +02:00
"events": [ Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":0,"axis_value":1.0,"script":null)
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":15,"pressure":0.0,"pressed":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777233,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"unicode":0,"echo":false,"script":null)
2021-06-25 22:09:04 +02:00
]
}
2021-06-11 21:10:27 +02:00
[physics]
common/enable_pause_aware_picking=true
2021-06-12 13:41:25 +02:00
2d/default_gravity_vector=Vector2( 0, 0 )
2021-06-11 21:10:27 +02:00
[rendering]
quality/driver/driver_name="GLES2"
vram_compression/import_etc=true
vram_compression/import_etc2=false
environment/default_environment="res://default_env.tres"