forked from devinapgames/FutureBall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCharacterSelect.tscn
125 lines (110 loc) · 3.46 KB
/
CharacterSelect.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
[gd_scene load_steps=5 format=2]
[ext_resource path="res://arrowLeft.png" type="Texture" id=1]
[ext_resource path="res://arrowRight.png" type="Texture" id=2]
[ext_resource path="res://CharacterSelect.gd" type="Script" id=3]
[ext_resource path="res://sounds/music/614018_Appear.ogg" type="AudioStream" id=4]
[node name="Control" type="Control"]
anchor_right = 0.301
anchor_bottom = 0.402
margin_left = 5.0
margin_top = 17.0
margin_right = 5.6
margin_bottom = 15.55
script = ExtResource( 3 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ColorRect2" type="ColorRect" parent="."]
margin_left = -2.0
margin_top = -13.0
margin_right = 76.0
margin_bottom = 62.0
color = Color( 0.0901961, 0.439216, 0.556863, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ColorRect" type="ColorRect" parent="ColorRect2"]
margin_left = -2.74965
margin_top = -3.0
margin_right = 81.2504
margin_bottom = 77.0
color = Color( 0, 0, 0, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ColorRect2" type="ColorRect" parent="ColorRect2"]
margin_left = -0.250351
margin_right = 77.7496
margin_bottom = 74.0
color = Color( 0.0313726, 0.227451, 0.360784, 0.47451 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ColorRect" type="ColorRect" parent="ColorRect2/ColorRect2"]
margin_left = 27.0
margin_top = 4.0
margin_right = 50.0
margin_bottom = 34.0
color = Color( 0.0627451, 0.458824, 0.631373, 1 )
[node name="ColorRect3" type="ColorRect" parent="ColorRect2"]
margin_left = 28.0
margin_top = 5.0
margin_right = 49.0
margin_bottom = 33.0
color = Color( 0, 0, 0, 0.619608 )
[node name="HSeparator" type="VBoxContainer" parent="."]
anchor_right = 0.626
anchor_bottom = 0.751
margin_left = -0.667419
margin_top = -7.0079
margin_right = 1438.21
margin_bottom = 1277.4
rect_scale = Vector2( 0.05, 0.05 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="MarginContainer" type="HBoxContainer" parent="HSeparator"]
margin_right = 1514.0
margin_bottom = 500.473
rect_min_size = Vector2( 500, 500.473 )
size_flags_vertical = 0
alignment = 1
[node name="Control" type="VBoxContainer" parent="HSeparator/MarginContainer"]
margin_left = 757.0
margin_right = 757.0
margin_bottom = 500.0
alignment = 1
[node name="VBoxContainer" type="VBoxContainer" parent="HSeparator/MarginContainer/Control"]
margin_top = 250.0
margin_bottom = 250.0
alignment = 1
[node name="GridContainer2" type="GridContainer" parent="HSeparator"]
margin_top = 504.0
margin_right = 1493.0
margin_bottom = 1072.0
size_flags_horizontal = 0
size_flags_vertical = 0
columns = 2
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Left" type="TextureButton" parent="HSeparator/GridContainer2"]
margin_right = 744.0
margin_bottom = 568.0
texture_normal = ExtResource( 1 )
[node name="Right" type="TextureButton" parent="HSeparator/GridContainer2"]
margin_left = 748.0
margin_right = 1493.0
margin_bottom = 568.0
size_flags_horizontal = 0
size_flags_vertical = 0
texture_normal = ExtResource( 2 )
[node name="CharSelectMusic" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 4 )
volume_db = -10.0
autoplay = true
bus = "Music"
[connection signal="button_down" from="HSeparator/GridContainer2/Left" to="." method="_on_Left_button_down"]
[connection signal="pressed" from="HSeparator/GridContainer2/Left" to="." method="_on_Left_pressed"]
[connection signal="button_down" from="HSeparator/GridContainer2/Right" to="." method="_on_Right_button_down"]
[connection signal="pressed" from="HSeparator/GridContainer2/Right" to="." method="_on_Right_pressed"]