-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLevelSelect.tscn
47 lines (40 loc) · 1.26 KB
/
LevelSelect.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
[gd_scene load_steps=3 format=2]
[ext_resource path="res://LevelSelect.gd" type="Script" id=1]
[ext_resource path="res://CustomButton.tscn" type="PackedScene" id=2]
[node name="LevelSelect" type="CanvasLayer"]
script = ExtResource( 1 )
[node name="ColorRect" type="ColorRect" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
size_flags_horizontal = 3
size_flags_vertical = 3
color = Color( 0.14902, 0.364706, 0.592157, 1 )
[node name="ScrollContainer" type="ScrollContainer" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -234.0
margin_top = -268.0
margin_right = 234.0
margin_bottom = 268.0
grow_horizontal = 2
scroll_horizontal_enabled = false
[node name="LevelSelectButtonContainer" type="VBoxContainer" parent="ScrollContainer"]
margin_left = 234.0
margin_top = 268.0
margin_right = 234.0
margin_bottom = 268.0
grow_horizontal = 2
size_flags_horizontal = 6
size_flags_vertical = 6
custom_constants/separation = 50
[node name="BackToMenuButton" parent="." instance=ExtResource( 2 )]
margin_left = 728.0
margin_top = 920.0
margin_right = 1191.0
margin_bottom = 998.0
grow_horizontal = 2
grow_vertical = 2
text = "Back to Menu"
[connection signal="pressed" from="BackToMenuButton" to="." method="_on_BackToMenuButton_pressed"]