-
Notifications
You must be signed in to change notification settings - Fork 1
/
tiescreen.tscn
131 lines (110 loc) · 3.99 KB
/
tiescreen.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[gd_scene load_steps=11 format=2]
[ext_resource path="res://assets/dreamland-3/Dreamland.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://assets/mainmenubg.png" type="Texture" id=2]
[ext_resource path="res://winscreen.gd" type="Script" id=3]
[sub_resource type="DynamicFont" id=1]
size = 90
font_data = ExtResource( 1 )
[sub_resource type="DynamicFont" id=2]
size = 60
font_data = ExtResource( 1 )
[sub_resource type="DynamicFont" id=3]
size = 30
font_data = ExtResource( 1 )
[sub_resource type="StyleBoxFlat" id=4]
bg_color = Color( 0.694118, 0.439216, 0.439216, 1 )
corner_radius_top_left = 20
corner_radius_top_right = 20
corner_radius_bottom_right = 20
corner_radius_bottom_left = 20
[sub_resource type="StyleBoxFlat" id=5]
bg_color = Color( 0.356863, 0.317647, 0.317647, 1 )
corner_radius_top_left = 20
corner_radius_top_right = 20
corner_radius_bottom_right = 20
corner_radius_bottom_left = 20
[sub_resource type="StyleBoxFlat" id=6]
corner_radius_top_left = 20
corner_radius_top_right = 20
corner_radius_bottom_right = 20
corner_radius_bottom_left = 20
[sub_resource type="DynamicFont" id=7]
size = 30
font_data = ExtResource( 1 )
[node name="MainMenu" type="Node2D"]
script = ExtResource( 3 )
[node name="TextureRect" type="TextureRect" parent="."]
margin_right = 1200.0
margin_bottom = 1200.0
rect_scale = Vector2( 0.412839, 0.497109 )
texture = ExtResource( 2 )
[node name="MarginContainer" type="MarginContainer" parent="."]
margin_right = 496.0
margin_bottom = 597.0
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer"]
margin_right = 496.0
margin_bottom = 597.0
[node name="Label" type="Label" parent="MarginContainer/VBoxContainer"]
margin_right = 496.0
margin_bottom = 296.0
size_flags_horizontal = 3
size_flags_vertical = 7
custom_fonts/font = SubResource( 1 )
text = "Tic Tac Toe"
align = 1
valign = 1
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer"]
margin_top = 300.0
margin_right = 496.0
margin_bottom = 597.0
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/VBoxContainer/VBoxContainer"]
margin_right = 496.0
margin_bottom = 110.0
custom_constants/margin_bottom = 50
[node name="Label" type="Label" parent="MarginContainer/VBoxContainer/VBoxContainer/MarginContainer"]
margin_right = 496.0
margin_bottom = 60.0
size_flags_horizontal = 3
size_flags_vertical = 7
custom_fonts/font = SubResource( 2 )
text = "It's a Tie!"
align = 1
valign = 1
[node name="MarginContainer2" type="MarginContainer" parent="MarginContainer/VBoxContainer/VBoxContainer"]
margin_top = 114.0
margin_right = 496.0
margin_bottom = 155.0
custom_constants/margin_right = 140
custom_constants/margin_top = 10
custom_constants/margin_left = 140
[node name="mainmenu" type="Button" parent="MarginContainer/VBoxContainer/VBoxContainer/MarginContainer2"]
margin_left = 140.0
margin_top = 10.0
margin_right = 356.0
margin_bottom = 41.0
custom_fonts/font = SubResource( 3 )
custom_styles/hover = SubResource( 4 )
custom_styles/pressed = SubResource( 5 )
custom_styles/normal = SubResource( 6 )
text = "Main Menu"
[node name="MarginContainer3" type="MarginContainer" parent="MarginContainer/VBoxContainer/VBoxContainer"]
margin_top = 159.0
margin_right = 496.0
margin_bottom = 200.0
custom_constants/margin_right = 140
custom_constants/margin_top = 10
custom_constants/margin_left = 140
[node name="quit" type="Button" parent="MarginContainer/VBoxContainer/VBoxContainer/MarginContainer3"]
margin_left = 140.0
margin_top = 10.0
margin_right = 356.0
margin_bottom = 41.0
custom_fonts/font = SubResource( 7 )
custom_styles/hover = SubResource( 4 )
custom_styles/pressed = SubResource( 5 )
custom_styles/normal = SubResource( 6 )
text = "Quit"
[connection signal="button_up" from="MarginContainer/VBoxContainer/VBoxContainer/MarginContainer2/mainmenu" to="." method="_on_mainmenu_button_up"]
[connection signal="button_up" from="MarginContainer/VBoxContainer/VBoxContainer/MarginContainer3/quit" to="." method="_on_quit_button_up"]