diff options
| author | Jan Tuomi <jantuomi@Jans-MacBook-Pro.local> | 2022-08-08 07:46:32 +0300 |
|---|---|---|
| committer | Jan Tuomi <jantuomi@Jans-MacBook-Pro.local> | 2022-08-08 07:46:32 +0300 |
| commit | ba41bbbb09e0d1057179a0f221b8d297d37ecb79 (patch) | |
| tree | 3e2fa115dfe2f2ca8d254744fae5646f6a346ce9 /project.godot | |
Initial commit
Diffstat (limited to 'project.godot')
| -rw-r--r-- | project.godot | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..9510c7a --- /dev/null +++ b/project.godot @@ -0,0 +1,83 @@ +; 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=[ { +"base": "", +"class": "GitAPI", +"language": "NativeScript", +"path": "res://addons/godot-git-plugin/git_api.gdns" +}, { +"base": "KinematicBody2D", +"class": "Player", +"language": "GDScript", +"path": "res://Player.gd" +} ] +_global_script_class_icons={ +"GitAPI": "", +"Player": "" +} + +[application] + +config/name="MobilePlatformer" +run/main_scene="res://Level.tscn" +config/icon="res://icon.png" + +[display] + +window/stretch/mode="2d" +window/stretch/aspect="expand" + +[editor] + +version_control_autoload_on_startup=true +version_control_plugin_name="GitAPI" + +[gdnative] + +singletons=[ "res://addons/godot-git-plugin/git_api.gdnlib" ] + +[gui] + +common/drop_mouse_on_gui_input_disabled=true + +[input] + +ui_left={ +"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":16777231,"physical_scancode":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":14,"pressure":0.0,"pressed":false,"script":null) + ] +} +jump={ +"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":16777232,"physical_scancode":0,"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":32,"physical_scancode":0,"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":16777237,"physical_scancode":0,"unicode":0,"echo":false,"script":null) + ] +} +move_left={ +"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":16777231,"physical_scancode":0,"unicode":0,"echo":false,"script":null) + ] +} +move_right={ +"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":16777233,"physical_scancode":0,"unicode":0,"echo":false,"script":null) + ] +} + +[physics] + +common/enable_pause_aware_picking=true + +[rendering] + +environment/default_environment="res://default_env.tres" |
