source: Studio/project.godot@ 315bf24

sandbox
Last change on this file since 315bf24 was 70fb6d4, checked in by Kevin Chapman <victory2b@…>, 4 years ago

Stamina bar in process

  • Property mode set to 100644
File size: 3.6 KB
RevLine 
[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
9config_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]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"
[663e1ba]31
32[gdnative]
33
[f7b09c8]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}
[70fb6d4]72Fire={
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}
[663e1ba]77
78[rendering]
79
80environment/default_environment="res://default_env.tres"
Note: See TracBrowser for help on using the repository browser.