source: Studio/project.godot@ c8c895d

sandbox
Last change on this file since c8c895d was c8c895d, checked in by Kevin Chapman <victory2b@…>, 3 years ago

Updated the INI file to hold the basic player stats like health. Made the slider for the mouse sensitivity work

  • Property mode set to 100644
File size: 3.9 KB
Line 
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
9config_version=4
10
11_global_script_classes=[ {
12"base": "",
13"class": "GitAPI",
14"language": "NativeScript",
15"path": "res://addons/godot-git-plugin/git_api.gdns"
16} ]
17_global_script_class_icons={
18"GitAPI": ""
19}
20
21[application]
22
23config/name="WorldTest"
24run/main_scene="res://Main_Menu.tscn"
25boot_splash/fullsize=false
26config/icon="res://FPS_project_icon.png"
27
28[autoload]
29
30Globals="*res://Globals.gd"
31
32[gdnative]
33
34singletons=[ "res://addons/godot-git-plugin/git_api.gdnlib" ]
35
36[input]
37
38move_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}
44move_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}
50move_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}
56move_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}
62move_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}
67move_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}
72heal={
73"deadzone": 0.5,
74"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"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)
75 ]
76}
77hold_move_forward={
78"deadzone": 0.5,
79"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":81,"unicode":0,"echo":false,"script":null)
80 ]
81}
82
83[network]
84
85remote_fs/page_size=65535
86
87[rendering]
88
89environment/default_environment="res://default_env.tres"
Note: See TracBrowser for help on using the repository browser.