Menu.tscn 3.2 KB

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