2022-11-06 18:29:46 +07: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]
|
|
|
|
|
2022-11-09 04:09:38 +07:00
|
|
|
config/name="GTA 3 Godot"
|
2022-11-06 20:25:22 +07:00
|
|
|
run/main_scene="res://startup.tscn"
|
2022-11-06 18:29:46 +07:00
|
|
|
config/features=PackedStringArray("4.0", "Forward Plus")
|
|
|
|
config/icon="res://icon.svg"
|
2022-11-06 20:25:22 +07:00
|
|
|
|
|
|
|
[autoload]
|
|
|
|
|
|
|
|
GameManager="*res://scripts/game_manager.gd"
|
2022-11-15 16:56:41 +07:00
|
|
|
MapBuilder="*res://scripts/map_builder.gd"
|
2022-11-17 17:38:22 +07:00
|
|
|
AssetLoader="*res://scripts/asset_loader.gd"
|
2022-11-09 23:29:35 +07:00
|
|
|
|
2022-11-14 18:18:14 +07:00
|
|
|
[input]
|
|
|
|
|
|
|
|
movement_forward={
|
|
|
|
"deadzone": 0.5,
|
2023-04-28 16:57:13 +07:00
|
|
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":0,"echo":false,"script":null)
|
2022-11-14 18:18:14 +07:00
|
|
|
]
|
|
|
|
}
|
|
|
|
movement_backward={
|
|
|
|
"deadzone": 0.5,
|
2023-04-28 16:57:13 +07:00
|
|
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":0,"echo":false,"script":null)
|
2022-11-14 18:18:14 +07:00
|
|
|
]
|
|
|
|
}
|
|
|
|
movement_left={
|
|
|
|
"deadzone": 0.5,
|
2023-04-28 16:57:13 +07:00
|
|
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"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":0,"echo":false,"script":null)
|
2022-11-14 18:18:14 +07:00
|
|
|
]
|
|
|
|
}
|
|
|
|
movement_right={
|
|
|
|
"deadzone": 0.5,
|
2023-04-28 16:57:13 +07:00
|
|
|
"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,"echo":false,"script":null)
|
2022-11-14 18:18:14 +07:00
|
|
|
]
|
|
|
|
}
|
2022-11-14 18:23:16 +07:00
|
|
|
movement_up={
|
|
|
|
"deadzone": 0.5,
|
2023-04-28 16:57:13 +07:00
|
|
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":69,"key_label":0,"unicode":0,"echo":false,"script":null)
|
2022-11-14 18:23:16 +07:00
|
|
|
]
|
|
|
|
}
|
|
|
|
movement_down={
|
|
|
|
"deadzone": 0.5,
|
2023-04-28 16:57:13 +07:00
|
|
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":81,"key_label":0,"unicode":0,"echo":false,"script":null)
|
2022-11-14 18:23:16 +07:00
|
|
|
]
|
|
|
|
}
|
2022-11-14 18:18:14 +07:00
|
|
|
|
2022-11-09 23:29:35 +07:00
|
|
|
[rendering]
|
|
|
|
|
|
|
|
anti_aliasing/quality/msaa_3d=1
|