Menu.tscn 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. [gd_scene load_steps=6 format=2]
  2. [ext_resource path="res://icon.png" type="Texture" id=1]
  3. [ext_resource path="res://labs/cascade/arena1.png" type="Texture" id=2]
  4. [ext_resource path="res://labs/factory/component/arena/tiny-gray-tiles.png" type="Texture" id=3]
  5. [ext_resource path="res://menu/button/select/SelectButton.tscn" type="PackedScene" id=4]
  6. [ext_resource path="res://menu/thumbnail/Thumbnail.gd" type="Script" id=5]
  7. [node name="Menu" type="Control"]
  8. anchor_right = 1.0
  9. anchor_bottom = 1.0
  10. __meta__ = {
  11. "_edit_use_anchors_": false
  12. }
  13. [node name="Title" type="Label" parent="."]
  14. anchor_top = 0.1
  15. anchor_right = 1.0
  16. anchor_bottom = 0.1
  17. text = "Godot Lab"
  18. align = 1
  19. __meta__ = {
  20. "_edit_use_anchors_": false
  21. }
  22. [node name="SettingsButton" type="Button" parent="."]
  23. margin_left = 10.0
  24. margin_top = 10.0
  25. margin_right = 12.0
  26. margin_bottom = 20.0
  27. text = "Settings"
  28. [node name="Logo" type="TextureRect" parent="."]
  29. anchor_left = 0.2
  30. anchor_top = 0.2
  31. anchor_right = 0.8
  32. anchor_bottom = 0.4
  33. margin_bottom = -10.0
  34. texture = ExtResource( 1 )
  35. stretch_mode = 6
  36. [node name="LabSelector" type="Control" parent="."]
  37. anchor_top = 0.4
  38. anchor_right = 0.3
  39. anchor_bottom = 1.0
  40. margin_left = 10.0
  41. margin_top = 10.0
  42. margin_right = -10.0
  43. margin_bottom = -10.0
  44. [node name="Lab1" parent="LabSelector" instance=ExtResource( 4 )]
  45. text = "Cascade"
  46. [node name="Lab2" parent="LabSelector" instance=ExtResource( 4 )]
  47. margin_top = 50.0
  48. margin_bottom = 80.0
  49. text = "Factory"
  50. index = 1
  51. [node name="LabLauncher" type="Control" parent="."]
  52. anchor_left = 0.3
  53. anchor_top = 0.4
  54. anchor_right = 1.0
  55. anchor_bottom = 1.0
  56. margin_left = 10.0
  57. margin_top = 10.0
  58. margin_right = -10.0
  59. margin_bottom = -10.0
  60. [node name="Thumbnail" type="TextureRect" parent="LabLauncher"]
  61. anchor_right = 1.0
  62. anchor_bottom = 1.0
  63. margin_left = 20.0
  64. margin_top = 10.0
  65. margin_right = -20.0
  66. margin_bottom = -60.0
  67. texture = ExtResource( 2 )
  68. stretch_mode = 6
  69. script = ExtResource( 5 )
  70. __meta__ = {
  71. "_edit_use_anchors_": false
  72. }
  73. pictures = [ ExtResource( 2 ), ExtResource( 3 ) ]
  74. [node name="StartButton" type="Button" parent="LabLauncher"]
  75. anchor_top = 1.0
  76. anchor_right = 1.0
  77. anchor_bottom = 1.0
  78. margin_left = 10.0
  79. margin_top = -40.0
  80. margin_right = -10.0
  81. margin_bottom = -10.0
  82. text = "Start"
  83. __meta__ = {
  84. "_edit_use_anchors_": false
  85. }
  86. [connection signal="lab_selected" from="LabSelector/Lab1" to="LabLauncher/Thumbnail" method="_on_lab_selected"]
  87. [connection signal="lab_selected" from="LabSelector/Lab2" to="LabLauncher/Thumbnail" method="_on_lab_selected"]