blob: 948b44b1e11ff182c7921c27f93fd26ae0a2fce5 (
plain)
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
121
122
123
|
[gd_scene load_steps=2 format=2]
[ext_resource path="res://UI/Menu/KeyBindings.gd" type="Script" id=1]
[node name="KeyBindings" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 64.0
margin_top = 64.0
margin_right = -64.0
margin_bottom = -88.0
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Panel" type="Panel" parent="."]
margin_right = 896.0
margin_bottom = 448.0
[node name="VBoxContainer" type="VBoxContainer" parent="Panel"]
margin_left = 256.0
margin_top = 24.0
margin_right = 640.0
margin_bottom = 424.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="DIRECTION_LEFT" type="HBoxContainer" parent="Panel/VBoxContainer"]
margin_right = 384.0
margin_bottom = 20.0
[node name="Label" type="Label" parent="Panel/VBoxContainer/DIRECTION_LEFT"]
margin_top = 3.0
margin_right = 24.0
margin_bottom = 17.0
text = "Left"
[node name="Input" type="Button" parent="Panel/VBoxContainer/DIRECTION_LEFT"]
margin_left = 28.0
margin_right = 40.0
margin_bottom = 20.0
[node name="Clear" type="Button" parent="Panel/VBoxContainer/DIRECTION_LEFT"]
margin_left = 44.0
margin_right = 88.0
margin_bottom = 20.0
text = "Clear"
[node name="DIRECTION_RIGHT" type="HBoxContainer" parent="Panel/VBoxContainer"]
margin_top = 24.0
margin_right = 384.0
margin_bottom = 44.0
[node name="Label" type="Label" parent="Panel/VBoxContainer/DIRECTION_RIGHT"]
margin_top = 3.0
margin_right = 32.0
margin_bottom = 17.0
text = "Right"
[node name="Input" type="Button" parent="Panel/VBoxContainer/DIRECTION_RIGHT"]
margin_left = 36.0
margin_right = 48.0
margin_bottom = 20.0
[node name="Clear" type="Button" parent="Panel/VBoxContainer/DIRECTION_RIGHT"]
margin_left = 52.0
margin_right = 96.0
margin_bottom = 20.0
text = "Clear"
[node name="JUMP" type="HBoxContainer" parent="Panel/VBoxContainer"]
margin_top = 48.0
margin_right = 384.0
margin_bottom = 68.0
[node name="Label" type="Label" parent="Panel/VBoxContainer/JUMP"]
margin_top = 3.0
margin_right = 32.0
margin_bottom = 17.0
text = "Jump"
[node name="Input" type="Button" parent="Panel/VBoxContainer/JUMP"]
margin_left = 36.0
margin_right = 48.0
margin_bottom = 20.0
[node name="Clear" type="Button" parent="Panel/VBoxContainer/JUMP"]
margin_left = 52.0
margin_right = 96.0
margin_bottom = 20.0
text = "Clear"
[node name="RUN" type="HBoxContainer" parent="Panel/VBoxContainer"]
margin_top = 72.0
margin_right = 384.0
margin_bottom = 92.0
[node name="Label" type="Label" parent="Panel/VBoxContainer/RUN"]
margin_top = 3.0
margin_right = 24.0
margin_bottom = 17.0
text = "Run"
[node name="Input" type="Button" parent="Panel/VBoxContainer/RUN"]
margin_left = 28.0
margin_right = 40.0
margin_bottom = 20.0
[node name="Clear" type="Button" parent="Panel/VBoxContainer/RUN"]
margin_left = 44.0
margin_right = 88.0
margin_bottom = 20.0
text = "Clear"
[connection signal="pressed" from="Panel/VBoxContainer/DIRECTION_LEFT/Input" to="." method="_on_Input_pressed" binds= [ "DIRECTION_LEFT" ]]
[connection signal="pressed" from="Panel/VBoxContainer/DIRECTION_LEFT/Clear" to="." method="_on_Clear_pressed" binds= [ "DIRECTION_LEFT" ]]
[connection signal="pressed" from="Panel/VBoxContainer/DIRECTION_RIGHT/Input" to="." method="_on_Input_pressed" binds= [ "DIRECTION_RIGHT" ]]
[connection signal="pressed" from="Panel/VBoxContainer/DIRECTION_RIGHT/Clear" to="." method="_on_Clear_pressed" binds= [ "DIRECTION_RIGHT" ]]
[connection signal="pressed" from="Panel/VBoxContainer/JUMP/Input" to="." method="_on_Input_pressed" binds= [ "JUMP" ]]
[connection signal="pressed" from="Panel/VBoxContainer/JUMP/Clear" to="." method="_on_Clear_pressed" binds= [ "JUMP" ]]
[connection signal="pressed" from="Panel/VBoxContainer/RUN/Input" to="." method="_on_Input_pressed" binds= [ "RUN" ]]
[connection signal="pressed" from="Panel/VBoxContainer/RUN/Clear" to="." method="_on_Clear_pressed" binds= [ "RUN" ]]
|