Menu.tscn 3.1 KB

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