Public repository for MUR pre alpha
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.2 KiB

  1. [gd_scene load_steps=2 format=2]
  2. [ext_resource path="res://scripts/menus/settings_graphics_menu.gd" type="Script" id=1]
  3. [node name="settings_graphics_menu" type="Tabs"]
  4. anchor_right = 1.0
  5. anchor_bottom = 1.0
  6. margin_left = 4.0
  7. margin_top = 45.0
  8. margin_right = -4.0
  9. margin_bottom = -4.0
  10. focus_neighbour_left = NodePath("../controls")
  11. focus_neighbour_right = NodePath("../system")
  12. focus_mode = 2
  13. script = ExtResource( 1 )
  14. [node name="VBoxContainer" type="VBoxContainer" parent="."]
  15. margin_right = 40.0
  16. margin_bottom = 40.0
  17. [node name="resolution" type="OptionButton" parent="VBoxContainer"]
  18. margin_right = 192.0
  19. margin_bottom = 20.0
  20. [node name="fullscreen" type="CheckButton" parent="VBoxContainer"]
  21. margin_top = 24.0
  22. margin_right = 192.0
  23. margin_bottom = 64.0
  24. pressed = true
  25. text = "FULLSCREEN"
  26. [node name="light" type="CheckButton" parent="VBoxContainer"]
  27. margin_top = 68.0
  28. margin_right = 192.0
  29. margin_bottom = 108.0
  30. text = "LIGHT"
  31. [node name="shadows" type="CheckButton" parent="VBoxContainer"]
  32. margin_top = 112.0
  33. margin_right = 192.0
  34. margin_bottom = 152.0
  35. disabled = true
  36. text = "SHADOWS"
  37. [connection signal="toggled" from="VBoxContainer/light" to="." method="_on_light_toggled"]