| 123456789101112131415161718192021222324252627282930313233343536373839 |
- [gd_scene load_steps=2 format=3 uid="uid://dya5kxx132fgp"]
- [ext_resource type="Script" uid="uid://bco7hof3wqck4" path="res://scenes/Nodes/valueslider.gd" id="1_4kxw6"]
- [node name="VBoxContainer" type="VBoxContainer"]
- custom_minimum_size = Vector2(270, 0)
- offset_right = 40.0
- offset_bottom = 40.0
- script = ExtResource("1_4kxw6")
- [node name="Label" type="Label" parent="."]
- layout_mode = 2
- text = "Value Name"
- [node name="HSplitContainer" type="HSplitContainer" parent="."]
- layout_mode = 2
- split_offset = 230
- dragging_enabled = false
- [node name="HSlider" type="HSlider" parent="HSplitContainer"]
- custom_minimum_size = Vector2(0, 23)
- layout_mode = 2
- size_flags_vertical = 1
- value = 10.0
- [node name="LineEdit" type="LineEdit" parent="HSplitContainer"]
- layout_mode = 2
- text = "0.0"
- alignment = 2
- max_length = 5
- flat = true
- [node name="MarginContainer" type="MarginContainer" parent="."]
- layout_mode = 2
- theme_override_constants/margin_bottom = 3
- [connection signal="value_changed" from="HSplitContainer/HSlider" to="." method="_on_h_slider_value_changed"]
- [connection signal="focus_exited" from="HSplitContainer/LineEdit" to="." method="_on_line_edit_focus_exited"]
- [connection signal="text_submitted" from="HSplitContainer/LineEdit" to="." method="_on_line_edit_text_submitted"]
|