level_select.tscn 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. [gd_scene load_steps=3 format=3 uid="uid://ceo4vhorpsuea"]
  2. [ext_resource type="PackedScene" uid="uid://df1ubs36y5rfl" path="res://scenes/level_select/level_button.tscn" id="1_wuexh"]
  3. [ext_resource type="Script" path="res://scenes/level_select/level_button.gd" id="2_vvvga"]
  4. [node name="LevelSelect" type="Control"]
  5. layout_mode = 3
  6. anchors_preset = 15
  7. anchor_right = 1.0
  8. anchor_bottom = 1.0
  9. grow_horizontal = 2
  10. grow_vertical = 2
  11. [node name="MarginContainer" type="MarginContainer" parent="."]
  12. layout_mode = 1
  13. anchors_preset = 15
  14. anchor_right = 1.0
  15. anchor_bottom = 1.0
  16. grow_horizontal = 2
  17. grow_vertical = 2
  18. theme_override_constants/margin_left = 10
  19. theme_override_constants/margin_top = 10
  20. theme_override_constants/margin_right = 10
  21. theme_override_constants/margin_bottom = 10
  22. [node name="GridContainer" type="GridContainer" parent="MarginContainer"]
  23. layout_mode = 2
  24. theme_override_constants/h_separation = 20
  25. theme_override_constants/v_separation = 30
  26. columns = 8
  27. [node name="LevelButton" parent="MarginContainer/GridContainer" instance=ExtResource("1_wuexh")]
  28. layout_mode = 2
  29. script = ExtResource("2_vvvga")
  30. level = "1"
  31. [node name="LevelButton2" parent="MarginContainer/GridContainer" instance=ExtResource("1_wuexh")]
  32. layout_mode = 2
  33. script = ExtResource("2_vvvga")
  34. level = "2"
  35. [node name="LevelButton3" parent="MarginContainer/GridContainer" instance=ExtResource("1_wuexh")]
  36. layout_mode = 2
  37. script = ExtResource("2_vvvga")
  38. level = "3"
  39. [node name="LevelButton4" parent="MarginContainer/GridContainer" instance=ExtResource("1_wuexh")]
  40. layout_mode = 2
  41. script = ExtResource("2_vvvga")
  42. level = "4"
  43. [node name="LevelButton5" parent="MarginContainer/GridContainer" instance=ExtResource("1_wuexh")]
  44. layout_mode = 2
  45. script = ExtResource("2_vvvga")
  46. level = "5"