Scrollable.tscn 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. [gd_scene load_steps=3 format=3 uid="uid://3ldimch2l6rv"]
  2. [ext_resource type="Theme" uid="uid://dhb6h35g1bk0x" path="res://data/themes/DefaultTheme.tres" id="1_3x28q"]
  3. [ext_resource type="Script" uid="uid://btbemuboy4dc5" path="res://sources/gui/Scrollable.gd" id="2_8yd1q"]
  4. [node name="Scrollable" type="PanelContainer"]
  5. custom_minimum_size = Vector2(160, 96)
  6. offset_right = 438.0
  7. offset_bottom = 594.0
  8. theme = ExtResource("1_3x28q")
  9. script = ExtResource("2_8yd1q")
  10. [node name="Scroll" type="ScrollContainer" parent="."]
  11. layout_mode = 2
  12. mouse_filter = 0
  13. [node name="Margin" type="MarginContainer" parent="Scroll"]
  14. layout_mode = 2
  15. size_flags_horizontal = 3
  16. size_flags_vertical = 3
  17. theme_override_constants/margin_left = 3
  18. theme_override_constants/margin_top = 3
  19. theme_override_constants/margin_right = 3
  20. theme_override_constants/margin_bottom = 3
  21. [node name="VBox" type="VBoxContainer" parent="Scroll/Margin"]
  22. clip_contents = true
  23. layout_mode = 2
  24. size_flags_vertical = 0
  25. alignment = 1
  26. [connection signal="gui_input" from="." to="." method="OnGuiInput"]