broken_seals/game/ui/loot_window/LootWindow.tscn

57 lines
1.6 KiB
Plaintext
Raw Normal View History

2019-11-20 14:30:34 +01:00
[gd_scene load_steps=4 format=2]
[ext_resource path="res://ui/loot_window/LootWindow.gd" type="Script" id=1]
[ext_resource path="res://ui/theme/ui_theme.tres" type="Theme" id=2]
[ext_resource path="res://ui/loot_window/LootEntry.tscn" type="PackedScene" id=3]
2020-09-24 16:54:10 +02:00
[node name="LootWindow" type="Control"]
2019-11-20 14:30:34 +01:00
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
theme = ExtResource( 2 )
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
entry_scene = ExtResource( 3 )
2020-09-24 16:54:10 +02:00
container_path = NodePath("PanelContainer/VBoxContainer/ScrollContainer/container")
2019-11-20 14:30:34 +01:00
2020-09-24 16:54:10 +02:00
[node name="PanelContainer" type="PanelContainer" parent="."]
margin_left = 82.0
margin_top = 83.0
margin_right = 299.0
margin_bottom = 359.0
[node name="VBoxContainer" type="VBoxContainer" parent="PanelContainer"]
2019-11-20 14:30:34 +01:00
margin_left = 4.0
margin_top = 4.0
2020-09-24 16:54:10 +02:00
margin_right = 213.0
margin_bottom = 272.0
2019-11-20 14:30:34 +01:00
size_flags_horizontal = 3
size_flags_vertical = 3
2020-09-24 16:54:10 +02:00
[node name="Label" type="Label" parent="PanelContainer/VBoxContainer"]
margin_right = 209.0
2019-11-20 14:30:34 +01:00
margin_bottom = 15.0
text = "Loot"
align = 1
valign = 1
2020-09-24 16:54:10 +02:00
[node name="ScrollContainer" type="ScrollContainer" parent="PanelContainer/VBoxContainer"]
2019-11-20 14:30:34 +01:00
margin_top = 23.0
2020-09-24 16:54:10 +02:00
margin_right = 209.0
margin_bottom = 234.0
2019-11-20 14:30:34 +01:00
size_flags_horizontal = 3
size_flags_vertical = 3
2020-09-24 16:54:10 +02:00
[node name="container" type="VBoxContainer" parent="PanelContainer/VBoxContainer/ScrollContainer"]
margin_right = 209.0
2019-11-20 14:30:34 +01:00
size_flags_horizontal = 3
2020-09-24 16:54:10 +02:00
[node name="Button" type="Button" parent="PanelContainer/VBoxContainer"]
margin_top = 242.0
margin_right = 209.0
margin_bottom = 268.57
2019-11-20 14:30:34 +01:00
text = "close"
2020-09-24 16:54:10 +02:00
[connection signal="pressed" from="PanelContainer/VBoxContainer/Button" to="." method="hide"]