mirror of
https://github.com/Relintai/Godot-Simple-TODO.git
synced 2024-11-15 13:37:20 +01:00
2e4ac956da
* Added item and column dragging * Fixed layout saving issues * Fixed deleting items * Fixed some of the requested changes
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
[gd_scene load_steps=2 format=2]
|
|
|
|
[ext_resource path="res://addons/SimpleTODO/TODO.gd" type="Script" id=1]
|
|
|
|
[node name="TODO" type="Control"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
rect_clip_content = true
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
__meta__ = {
|
|
"_editor_description_": ""
|
|
}
|
|
|
|
[node name="PanelContainer" type="PanelContainer" parent="VBoxContainer"]
|
|
margin_right = 1024.0
|
|
margin_bottom = 34.0
|
|
|
|
[node name="Button" type="Button" parent="VBoxContainer/PanelContainer"]
|
|
margin_left = 467.0
|
|
margin_top = 7.0
|
|
margin_right = 556.0
|
|
margin_bottom = 27.0
|
|
size_flags_horizontal = 4
|
|
text = "Add column"
|
|
|
|
[node name="ScrollContainer" type="ScrollContainer" parent="VBoxContainer"]
|
|
margin_top = 38.0
|
|
margin_right = 1024.0
|
|
margin_bottom = 600.0
|
|
size_flags_vertical = 3
|
|
|
|
[node name="Columns" type="HBoxContainer" parent="VBoxContainer/ScrollContainer"]
|
|
margin_right = 1024.0
|
|
margin_bottom = 562.0
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
|
|
[connection signal="pressed" from="VBoxContainer/PanelContainer/Button" to="." method="add_column" binds= [ true ]]
|