-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConnection.tscn
45 lines (35 loc) · 1.23 KB
/
Connection.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
[gd_scene load_steps=9 format=2]
[ext_resource path="res://Connection.gd" type="Script" id=1]
[ext_resource path="res://Fonts/Quicksand-VariableFont_wght.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://Fonts/FasterOne-Regular.ttf" type="DynamicFontData" id=3]
[sub_resource type="DynamicFont" id=1]
size = 100
font_data = ExtResource( 3 )
[sub_resource type="DynamicFont" id=3]
size = 50
font_data = ExtResource( 2 )
[sub_resource type="StyleBoxFlat" id=11]
bg_color = Color( 0.2, 0.2, 0.2, 1 )
[sub_resource type="StyleBoxEmpty" id=4]
[sub_resource type="StyleBoxFlat" id=9]
bg_color = Color( 0.172549, 0.172549, 0.172549, 1 )
[node name="Connection" type="Node2D"]
script = ExtResource( 1 )
[node name="Label" type="Label" parent="."]
margin_right = 1024.0
margin_bottom = 416.0
custom_fonts/font = SubResource( 1 )
text = "Connecting..."
align = 1
valign = 1
[node name="Back" type="Button" parent="."]
margin_left = 64.0
margin_top = 448.0
margin_right = 960.0
margin_bottom = 576.0
custom_fonts/font = SubResource( 3 )
custom_styles/hover = SubResource( 11 )
custom_styles/pressed = SubResource( 4 )
custom_styles/normal = SubResource( 9 )
text = "Back"
[connection signal="pressed" from="Back" to="." method="_on_Button_pressed"]