material-maker/material_maker/windows/file_dialog/left_panel.tscn

49 lines
1.3 KiB
Plaintext

[gd_scene load_steps=2 format=2]
[ext_resource path="res://material_maker/windows/file_dialog/left_panel.gd" type="Script" id=1]
[node name="LeftPanel" type="VBoxContainer"]
margin_right = 40.0
margin_bottom = 40.0
size_flags_vertical = 3
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="RecentLabel" type="Label" parent="."]
margin_right = 100.0
margin_bottom = 14.0
text = "Recent"
[node name="RecentList" type="ItemList" parent="."]
margin_top = 18.0
margin_right = 100.0
margin_bottom = 18.0
rect_min_size = Vector2( 100, 0 )
size_flags_vertical = 3
__meta__ = {
"_edit_use_anchors_": false
}
[node name="FavLabel" type="Label" parent="."]
margin_top = 22.0
margin_right = 100.0
margin_bottom = 36.0
text = "Favorite"
[node name="FavList" type="ItemList" parent="."]
margin_top = 40.0
margin_right = 100.0
margin_bottom = 40.0
rect_min_size = Vector2( 100, 0 )
size_flags_vertical = 3
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="gui_input" from="RecentList" to="." method="_on_RecentList_gui_input"]
[connection signal="item_activated" from="RecentList" to="." method="_on_RecentList_item_activated"]
[connection signal="gui_input" from="FavList" to="." method="_on_FavList_gui_input"]
[connection signal="item_activated" from="FavList" to="." method="_on_FavList_item_activated"]