-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeMappingButton.tscn
38 lines (32 loc) · 985 Bytes
/
ChangeMappingButton.tscn
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
[gd_scene load_steps=2 format=2]
[ext_resource path="res://ChangeMappingButton.gd" type="Script" id=1]
[node name="ChangeMappingButton" type="Button"]
margin_right = 142.0
margin_bottom = 37.0
focus_mode = 1
enabled_focus_mode = 1
text = "Change Mapping"
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="PopupDialog" type="PopupDialog" parent="."]
margin_left = 12.0
margin_top = 46.0
margin_right = 216.0
margin_bottom = 123.0
[node name="Label" type="Label" parent="PopupDialog"]
margin_left = 18.0
margin_top = 13.0
margin_right = 183.0
margin_bottom = 27.0
text = "Press something new"
align = 1
[node name="CancelButton" type="Button" parent="PopupDialog"]
margin_left = 73.0
margin_top = 45.0
margin_right = 127.0
margin_bottom = 65.0
text = "Cancel"
[connection signal="pressed" from="." to="." method="_on_ChangeMappingButton_pressed"]
[connection signal="pressed" from="PopupDialog/CancelButton" to="." method="_on_CancelButton_pressed"]