blob: 7a8f5c60aa89127b104448e9da0d938a2aa9d17d (
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
|
[gd_scene load_steps=3 format=2]
[ext_resource path="res://ui/modal_popup/modal_popup.gd" type="Script" id=1]
[ext_resource path="res://fonts/font_icons.tres" type="DynamicFont" id=2]
[node name="popup" type="ColorRect"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
[node name="background" type="Panel" parent="."]
anchor_left = 0.05
anchor_top = 0.1
anchor_right = 0.95
anchor_bottom = 0.975
[node name="title" type="Label" parent="."]
anchor_left = 0.15
anchor_top = 0.025
anchor_right = 0.95
anchor_bottom = 0.1
margin_right = -80.0
margin_bottom = -20.0
align = 1
valign = 1
autowrap = true
[node name="dismiss" type="Button" parent="."]
anchor_left = 0.05
anchor_top = 0.025
anchor_right = 0.15
anchor_bottom = 0.1
margin_right = 0.0799866
margin_bottom = -20.0
custom_fonts/font = ExtResource( 2 )
text = ""
|