[663e1ba] | 1 | ; Engine configuration file.
|
---|
| 2 | ; It's best edited using the editor UI and not directly,
|
---|
| 3 | ; since the parameters that go here are not all obvious.
|
---|
| 4 | ;
|
---|
| 5 | ; Format:
|
---|
| 6 | ; [section] ; section goes between []
|
---|
| 7 | ; param=value ; assign values to parameters
|
---|
| 8 |
|
---|
| 9 | config_version=4
|
---|
| 10 |
|
---|
| 11 | _global_script_classes=[ {
|
---|
| 12 | "base": "",
|
---|
| 13 | "class": "GitAPI",
|
---|
| 14 | "language": "NativeScript",
|
---|
[f7b09c8] | 15 | "path": "res://addons/godot-git-plugin/git_api.gdns"
|
---|
[663e1ba] | 16 | } ]
|
---|
| 17 | _global_script_class_icons={
|
---|
| 18 | "GitAPI": ""
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | [application]
|
---|
| 22 |
|
---|
[f7b09c8] | 23 | config/name="WorldTest"
|
---|
| 24 | run/main_scene="res://Main_Menu.tscn"
|
---|
| 25 | boot_splash/fullsize=false
|
---|
| 26 | config/icon="res://FPS_project_icon.png"
|
---|
| 27 |
|
---|
| 28 | [autoload]
|
---|
| 29 |
|
---|
| 30 | Globals="*res://Globals.gd"
|
---|
[663e1ba] | 31 |
|
---|
| 32 | [gdnative]
|
---|
| 33 |
|
---|
[f7b09c8] | 34 | singletons=[ "res://addons/godot-git-plugin/git_api.gdnlib" ]
|
---|
| 35 |
|
---|
| 36 | [input]
|
---|
| 37 |
|
---|
| 38 | move_forward={
|
---|
| 39 | "deadzone": 0.5,
|
---|
| 40 | "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)
|
---|
| 41 | , 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)
|
---|
| 42 | ]
|
---|
| 43 | }
|
---|
| 44 | move_backward={
|
---|
| 45 | "deadzone": 0.5,
|
---|
| 46 | "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,"unicode":0,"echo":false,"script":null)
|
---|
| 47 | , 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)
|
---|
| 48 | ]
|
---|
| 49 | }
|
---|
| 50 | move_left={
|
---|
| 51 | "deadzone": 0.5,
|
---|
| 52 | "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,"unicode":0,"echo":false,"script":null)
|
---|
| 53 | , 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)
|
---|
| 54 | ]
|
---|
| 55 | }
|
---|
| 56 | move_right={
|
---|
| 57 | "deadzone": 0.5,
|
---|
| 58 | "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,"unicode":0,"echo":false,"script":null)
|
---|
| 59 | , 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)
|
---|
| 60 | ]
|
---|
| 61 | }
|
---|
| 62 | move_sprint={
|
---|
| 63 | "deadzone": 0.5,
|
---|
| 64 | "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":16777237,"unicode":0,"echo":false,"script":null)
|
---|
| 65 | ]
|
---|
| 66 | }
|
---|
| 67 | move_jump={
|
---|
| 68 | "deadzone": 0.5,
|
---|
| 69 | "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":32,"unicode":0,"echo":false,"script":null)
|
---|
| 70 | ]
|
---|
| 71 | }
|
---|
[663e1ba] | 72 |
|
---|
| 73 | [rendering]
|
---|
| 74 |
|
---|
| 75 | environment/default_environment="res://default_env.tres"
|
---|