-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathFontSizeHelpDialog.tscn
58 lines (50 loc) · 1.75 KB
/
FontSizeHelpDialog.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
[gd_scene load_steps=6 format=2]
[ext_resource path="res://fonts/OpenSans-Regular.tres" type="DynamicFont" id=1]
[ext_resource path="res://fonts/OpenSans-SemiboldItalic.tres" type="DynamicFont" id=2]
[ext_resource path="res://fonts/OpenSans-Italic.tres" type="DynamicFont" id=3]
[ext_resource path="res://fonts/OpenSans-Semibold.tres" type="DynamicFont" id=4]
[ext_resource path="res://scripts/FontSizeHelpDialog.gd" type="Script" id=5]
[node name="FontSizeHelpDialog" type="WindowDialog"]
anchor_right = 1.0
anchor_bottom = 1.0
window_title = "dlg_font_size_help_title"
script = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false
}
[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 = 586.0
margin_bottom = 686.0
custom_constants/margin_top = 8
custom_constants/margin_bottom = 8
[node name="VBox" type="VBoxContainer" parent="Panel/Margin"]
margin_top = 8.0
margin_right = 572.0
margin_bottom = 664.0
[node name="Help" type="RichTextLabel" parent="Panel/Margin/VBox"]
margin_right = 572.0
margin_bottom = 619.0
size_flags_vertical = 3
custom_fonts/bold_italics_font = ExtResource( 2 )
custom_fonts/italics_font = ExtResource( 3 )
custom_fonts/bold_font = ExtResource( 4 )
custom_fonts/normal_font = ExtResource( 1 )
bbcode_enabled = true
bbcode_text = "dlg_font_config_help"
text = "dlg_font_config_help"
[node name="BtnOK" type="Button" parent="Panel/Margin/VBox"]
margin_left = 245.0
margin_top = 627.0
margin_right = 327.0
margin_bottom = 664.0
size_flags_horizontal = 4
text = "Close"
[connection signal="pressed" from="Panel/Margin/VBox/BtnOK" to="." method="_on_BtnOK_pressed"]