-
Notifications
You must be signed in to change notification settings - Fork 0
/
SelectionPopup.tscn
61 lines (51 loc) · 1.7 KB
/
SelectionPopup.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
[gd_scene load_steps=4 format=2]
[ext_resource path="res://Fonts/MicroWhite.fnt" type="BitmapFont" id=1]
[ext_resource path="res://Domino/TextBoxWhiteTheme.tres" type="Theme" id=2]
[ext_resource path="res://SelectionPopup.gd" type="Script" id=3]
[node name="SelectionPopup" type="CanvasLayer"]
script = ExtResource( 3 )
[node name="PopupPanel" type="PopupPanel" parent="."]
visible = true
margin_right = 8.0
margin_bottom = 8.0
popup_exclusive = true
[node name="VBoxContainer" type="VBoxContainer" parent="PopupPanel"]
margin_left = 4.0
margin_top = 4.0
margin_right = 122.0
margin_bottom = 48.0
[node name="InfoMessage" type="Label" parent="PopupPanel/VBoxContainer"]
margin_right = 118.0
margin_bottom = 15.0
theme = ExtResource( 2 )
text = "Select a domino"
align = 1
[node name="GridContainer" type="GridContainer" parent="PopupPanel/VBoxContainer"]
margin_top = 19.0
margin_right = 118.0
margin_bottom = 19.0
columns = 6
[node name="HBoxContainer" type="HBoxContainer" parent="PopupPanel/VBoxContainer"]
margin_top = 23.0
margin_right = 118.0
margin_bottom = 44.0
[node name="ConfirmButton" type="Button" parent="PopupPanel/VBoxContainer/HBoxContainer"]
margin_right = 60.0
margin_bottom = 21.0
theme = ExtResource( 2 )
custom_fonts/font = ExtResource( 1 )
text = "Confirm"
[node name="CancelButton" type="Button" parent="PopupPanel/VBoxContainer/HBoxContainer"]
margin_left = 64.0
margin_right = 118.0
margin_bottom = 21.0
theme = ExtResource( 2 )
custom_fonts/font = ExtResource( 1 )
text = "Cancel"
[node name="BackgroundDimmer" type="ColorRect" parent="."]
margin_right = 960.0
margin_bottom = 460.0
rect_min_size = Vector2( 960, 460 )
size_flags_horizontal = 3
size_flags_vertical = 3
color = Color( 1, 1, 1, 0.721569 )