save_change_menu.tscn 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [gd_scene load_steps=2 format=3 uid="uid://ckduhosjv5ogl"]
  2. [ext_resource type="Script" uid="uid://bpofj2tr2d7l" path="res://Scripts/Save Change Menu.gd" id="1"]
  3. [node name="Save Change Menu" type="Control"]
  4. layout_mode = 3
  5. anchors_preset = 15
  6. anchor_right = 1.0
  7. anchor_bottom = 1.0
  8. grow_horizontal = 2
  9. grow_vertical = 2
  10. script = ExtResource("1")
  11. [node name="Room" type="Button" parent="."]
  12. layout_mode = 0
  13. offset_left = 144.0
  14. offset_top = 89.0
  15. offset_right = 318.0
  16. offset_bottom = 134.0
  17. text = "Room"
  18. [node name="Gas Station Cutscene" type="Button" parent="."]
  19. layout_mode = 0
  20. offset_left = 146.0
  21. offset_top = 153.0
  22. offset_right = 310.0
  23. offset_bottom = 198.0
  24. text = "Gas Station Cutscene"
  25. [node name="Gas Station" type="Button" parent="."]
  26. layout_mode = 0
  27. offset_left = 144.0
  28. offset_top = 212.0
  29. offset_right = 319.0
  30. offset_bottom = 257.0
  31. text = "Gas Station"
  32. [connection signal="pressed" from="Room" to="." method="_on_room_pressed"]
  33. [connection signal="pressed" from="Gas Station Cutscene" to="." method="_on_gas_station_cutscene_pressed"]
  34. [connection signal="pressed" from="Gas Station" to="." method="_on_gas_station_pressed"]