summaryrefslogtreecommitdiffstats
path: root/project.godot
diff options
context:
space:
mode:
authormikatomik <mikec_2007@hotmail.com>2022-09-09 23:56:34 -0400
committermikatomik <mikec_2007@hotmail.com>2022-09-09 23:56:34 -0400
commit8199603264cb1e4649e52cb1ae8a5b800104a1c1 (patch)
tree2b0c68cb275f4a97ebf90ffdfcc9623a1f3c4b6a /project.godot
parent941ec1c9ed595ef8b039ddf083e5bc910a8c4ecb (diff)
downloadgodot_wildjam_49-8199603264cb1e4649e52cb1ae8a5b800104a1c1.tar.gz
godot_wildjam_49-8199603264cb1e4649e52cb1ae8a5b800104a1c1.zip
Implement basic FPS controller
Diffstat (limited to 'project.godot')
-rw-r--r--project.godot38
1 files changed, 38 insertions, 0 deletions
diff --git a/project.godot b/project.godot
index b1f7083..4db74bd 100644
--- a/project.godot
+++ b/project.godot
@@ -13,14 +13,52 @@ config_version=4
config/name="Game Jam 49"
config/icon="res://icon.png"
+[autoload]
+
+Settings="*res://singletons/settings.gd"
+
[gui]
common/drop_mouse_on_gui_input_disabled=true
+[input]
+
+forward={
+"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":87,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
+, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":1,"axis_value":-1.0,"script":null)
+ ]
+}
+backward={
+"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":83,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
+, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":1,"axis_value":1.0,"script":null)
+ ]
+}
+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":68,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
+, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":0,"axis_value":1.0,"script":null)
+ ]
+}
+interact={
+"deadzone": 0.5,
+"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":1,"pressed":false,"doubleclick":false,"script":null)
+, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":2,"pressure":0.0,"pressed":false,"script":null)
+ ]
+}
+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":65,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
+, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":0,"axis_value":-1.0,"script":null)
+ ]
+}
+
[physics]
common/enable_pause_aware_picking=true
[rendering]
+quality/driver/driver_name="GLES2"
environment/default_environment="res://default_env.tres"