1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- [gd_scene load_steps=3 format=3 uid="uid://ceo4vhorpsuea"]
- [ext_resource type="PackedScene" uid="uid://df1ubs36y5rfl" path="res://scenes/level_select/level_button.tscn" id="1_wuexh"]
- [ext_resource type="Script" path="res://scenes/level_select/level_button.gd" id="2_vvvga"]
- [node name="LevelSelect" type="Control"]
- layout_mode = 3
- anchors_preset = 15
- anchor_right = 1.0
- anchor_bottom = 1.0
- grow_horizontal = 2
- grow_vertical = 2
- [node name="MarginContainer" type="MarginContainer" parent="."]
- layout_mode = 1
- anchors_preset = 15
- anchor_right = 1.0
- anchor_bottom = 1.0
- grow_horizontal = 2
- grow_vertical = 2
- theme_override_constants/margin_left = 10
- theme_override_constants/margin_top = 10
- theme_override_constants/margin_right = 10
- theme_override_constants/margin_bottom = 10
- [node name="GridContainer" type="GridContainer" parent="MarginContainer"]
- layout_mode = 2
- theme_override_constants/h_separation = 20
- theme_override_constants/v_separation = 30
- columns = 8
- [node name="LevelButton" parent="MarginContainer/GridContainer" instance=ExtResource("1_wuexh")]
- layout_mode = 2
- script = ExtResource("2_vvvga")
- level = "1"
- [node name="LevelButton2" parent="MarginContainer/GridContainer" instance=ExtResource("1_wuexh")]
- layout_mode = 2
- script = ExtResource("2_vvvga")
- level = "2"
- [node name="LevelButton3" parent="MarginContainer/GridContainer" instance=ExtResource("1_wuexh")]
- layout_mode = 2
- script = ExtResource("2_vvvga")
- level = "3"
- [node name="LevelButton4" parent="MarginContainer/GridContainer" instance=ExtResource("1_wuexh")]
- layout_mode = 2
- script = ExtResource("2_vvvga")
- level = "4"
- [node name="LevelButton5" parent="MarginContainer/GridContainer" instance=ExtResource("1_wuexh")]
- layout_mode = 2
- script = ExtResource("2_vvvga")
- level = "5"
|