-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.godot
More file actions
120 lines (100 loc) · 3.78 KB
/
project.godot
File metadata and controls
120 lines (100 loc) · 3.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
; 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": "Control",
"class": "TNT_Input_Engine",
"language": "GDScript",
"path": "res://addons/tnt_input_engine/code/components/tnt_input_engine_properties.gd"
}, {
"base": "TNT_Virtual_JoyPad",
"class": "TNT_Virtual_Button",
"language": "GDScript",
"path": "res://addons/tnt_input_engine/code/components/tnt_virtual_button.gd"
}, {
"base": "TNT_Virtual_JoyPad",
"class": "TNT_Virtual_Dpad",
"language": "GDScript",
"path": "res://addons/tnt_input_engine/code/components/tnt_virtual_dpad.gd"
}, {
"base": "TNT_Virtual_JoyPad",
"class": "TNT_Virtual_Joy",
"language": "GDScript",
"path": "res://addons/tnt_input_engine/code/components/tnt_virtual_joy.gd"
}, {
"base": "Control",
"class": "TNT_Virtual_JoyPad",
"language": "GDScript",
"path": "res://addons/tnt_input_engine/code/parent/tnt_virtual_joypad.gd"
} ]
_global_script_class_icons={
"TNT_Input_Engine": "res://addons/tnt_input_engine/assets/icons/tnt_input_engine.png",
"TNT_Virtual_Button": "res://addons/tnt_input_engine/assets/icons/tnt_virtual_button.png",
"TNT_Virtual_Dpad": "res://addons/tnt_input_engine/assets/icons/tnt_dpad.png",
"TNT_Virtual_Joy": "res://addons/tnt_input_engine/assets/icons/tnt_joy_icon.png",
"TNT_Virtual_JoyPad": ""
}
[application]
config/name="TNT Input Engine Demo"
run/main_scene="res://demo/scenes/demo_1.tscn"
config/icon="res://icon.png"
[autoload]
TNTInputEngine="*res://addons/tnt_input_engine/code/global_class/tnt_input_engine_global.gd"
SceneChanger="*res://demo/shared/scene_changer.gd"
[display]
window/size/width=640
window/size/height=480
window/size/resizable=false
window/size/always_on_top=true
window/stretch/mode="viewport"
window/stretch/aspect="expand"
[editor_plugins]
enabled=PoolStringArray( "res://addons/tnt_input_engine/plugin.cfg" )
[global]
enviro=false
[input]
ui_accept={
"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":16777221,"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":16777222,"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)
]
}
ui_select={
"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":32,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
ui_cancel={
"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":16777217,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
]
}
ui_left={
"deadzone": 0.5,
"events": [ ]
}
ui_right={
"deadzone": 0.5,
"events": [ ]
}
ui_up={
"deadzone": 0.5,
"events": [ ]
}
ui_down={
"deadzone": 0.5,
"events": [ ]
}
[input_devices]
pointing/emulate_touch_from_mouse=true
[physics]
common/enable_pause_aware_picking=true
[rendering]
batching/precision/uv_contract=true
environment/default_clear_color=Color( 0.2, 0.517647, 0.0980392, 1 )