-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathModReinstallDialog.tscn
91 lines (79 loc) · 2.36 KB
/
ModReinstallDialog.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
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
[gd_scene load_steps=2 format=2]
[ext_resource path="res://scripts/ModReinstallDialog.gd" type="Script" id=1]
[node name="ModReinstallDialog" type="WindowDialog"]
visible = true
anchor_right = 1.0
anchor_bottom = 0.268
margin_right = -150.0
margin_bottom = -14.4
size_flags_horizontal = 3
size_flags_vertical = 3
window_title = "dlg_mod_reinstall_title"
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": true
}
[node name="Panel" type="PanelContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Margin" type="MarginContainer" parent="Panel"]
margin_left = 14.0
margin_top = 14.0
margin_right = 486.0
margin_bottom = 186.0
custom_constants/margin_right = 16
custom_constants/margin_top = 16
custom_constants/margin_left = 16
custom_constants/margin_bottom = 16
__meta__ = {
"_edit_use_anchors_": false
}
[node name="VBox" type="VBoxContainer" parent="Panel/Margin"]
margin_left = 16.0
margin_top = 31.0
margin_right = 456.0
margin_bottom = 140.0
size_flags_vertical = 4
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="Panel/Margin/VBox"]
margin_right = 440.0
margin_bottom = 56.0
text = "(this text is assigned at runtime)
(this text is assigned at runtime)"
align = 1
autowrap = true
[node name="Spacer" type="Control" parent="Panel/Margin/VBox"]
margin_top = 64.0
margin_right = 440.0
margin_bottom = 64.0
[node name="HBox" type="HBoxContainer" parent="Panel/Margin/VBox"]
margin_left = 8.0
margin_top = 72.0
margin_right = 432.0
margin_bottom = 109.0
size_flags_horizontal = 4
[node name="BtnYes" type="Button" parent="Panel/Margin/VBox/HBox"]
margin_right = 157.0
margin_bottom = 37.0
size_flags_horizontal = 4
text = "btn_reinstall"
[node name="BtnNo" type="Button" parent="Panel/Margin/VBox/HBox"]
margin_left = 165.0
margin_right = 278.0
margin_bottom = 37.0
size_flags_horizontal = 4
text = "btn_skip"
[node name="BtnCancel" type="Button" parent="Panel/Margin/VBox/HBox"]
margin_left = 286.0
margin_right = 424.0
margin_bottom = 37.0
size_flags_horizontal = 4
text = "btn_cancel"
[connection signal="pressed" from="Panel/Margin/VBox/HBox/BtnYes" to="." method="_on_BtnYes_pressed"]
[connection signal="pressed" from="Panel/Margin/VBox/HBox/BtnNo" to="." method="_on_BtnNo_pressed"]
[connection signal="pressed" from="Panel/Margin/VBox/HBox/BtnCancel" to="." method="_on_BtnCancel_pressed"]