123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- [gd_scene load_steps=4 format=2]
- [ext_resource path="res://UI/level_selection_screen.gd" type="Script" id=1]
- [ext_resource path="res://UI/LevelButton.tscn" type="PackedScene" id=2]
- [ext_resource path="res://Fonts/hanken/hanken_18.tres" type="DynamicFont" id=3]
- [node name="LevelSelectionScreen" type="Control"]
- anchor_right = 1.0
- anchor_bottom = 1.0
- script = ExtResource( 1 )
- [node name="ColorRect" type="ColorRect" parent="."]
- margin_right = 1280.0
- margin_bottom = 720.0
- color = Color( 0.121569, 0.560784, 0.592157, 1 )
- [node name="Margin" type="MarginContainer" parent="."]
- anchor_right = 1.0
- anchor_bottom = 1.0
- margin_left = 50.0
- margin_top = 50.0
- margin_right = -50.0
- margin_bottom = -50.0
- [node name="VBoxContainer" type="VBoxContainer" parent="Margin"]
- margin_right = 1180.0
- margin_bottom = 620.0
- [node name="GridContainer" type="GridContainer" parent="Margin/VBoxContainer"]
- editor/display_folded = true
- margin_right = 1180.0
- margin_bottom = 591.0
- size_flags_vertical = 3
- custom_constants/vseparation = 32
- custom_constants/hseparation = 32
- columns = 3
- [node name="LevelButton" parent="Margin/VBoxContainer/GridContainer" instance=ExtResource( 2 )]
- margin_right = 372.0
- size_flags_horizontal = 3
- text = "just the beginning"
- level = "res://levels/Lv01_beginning.tscn"
- [node name="LevelButton2" parent="Margin/VBoxContainer/GridContainer" instance=ExtResource( 2 )]
- margin_left = 404.0
- margin_right = 776.0
- size_flags_horizontal = 3
- text = "introducing holes"
- level = "res://levels/Lv02_holes.tscn"
- [node name="LevelButton4" parent="Margin/VBoxContainer/GridContainer" instance=ExtResource( 2 )]
- margin_left = 808.0
- margin_right = 1180.0
- size_flags_horizontal = 3
- text = "and now layers"
- level = "res://levels/Lv03_layers.tscn"
- [node name="LevelButton3" parent="Margin/VBoxContainer/GridContainer" instance=ExtResource( 2 )]
- margin_top = 132.0
- margin_right = 372.0
- margin_bottom = 232.0
- size_flags_horizontal = 3
- text = "introducing box buttons"
- level = "res://levels/Lv04_buttons.tscn"
- [node name="LevelButton5" parent="Margin/VBoxContainer/GridContainer" instance=ExtResource( 2 )]
- margin_left = 404.0
- margin_top = 132.0
- margin_right = 776.0
- margin_bottom = 232.0
- size_flags_horizontal = 3
- text = "all together now"
- level = "res://levels/Lv05_together.tscn"
- [node name="LevelButton6" parent="Margin/VBoxContainer/GridContainer" instance=ExtResource( 2 )]
- margin_left = 808.0
- margin_top = 132.0
- margin_right = 1180.0
- margin_bottom = 232.0
- size_flags_horizontal = 3
- text = "the snake"
- level = "res://levels/Lv06_snake.tscn"
- [node name="LevelButton7" parent="Margin/VBoxContainer/GridContainer" instance=ExtResource( 2 )]
- margin_top = 264.0
- margin_right = 372.0
- margin_bottom = 364.0
- size_flags_horizontal = 3
- disabled = true
- [node name="LevelButton8" parent="Margin/VBoxContainer/GridContainer" instance=ExtResource( 2 )]
- margin_left = 404.0
- margin_top = 264.0
- margin_right = 776.0
- margin_bottom = 364.0
- size_flags_horizontal = 3
- disabled = true
- [node name="ButtonBackToMainMenu" type="Button" parent="Margin/VBoxContainer"]
- margin_top = 595.0
- margin_right = 1180.0
- margin_bottom = 620.0
- custom_fonts/font = ExtResource( 3 )
- text = "back to main menu"
- flat = true
- [connection signal="pressed" from="Margin/VBoxContainer/ButtonBackToMainMenu" to="." method="_on_ButtonBackToMainMenu_pressed"]
|