123456789101112131415161718192021222324252627282930313233 |
- [gd_scene load_steps=4 format=3 uid="uid://bmsbt0owg4j86"]
- [ext_resource type="Theme" uid="uid://dhb6h35g1bk0x" path="res://data/themes/DefaultTheme.tres" id="1_dnsxy"]
- [ext_resource type="Script" uid="uid://da1qit03a4t2l" path="res://sources/gui/Emote.gd" id="2_fbark"]
- [ext_resource type="Script" uid="uid://cuhwrw40yxve1" path="res://sources/gui/CellGrid.gd" id="3_2xdy7"]
- [node name="Panel" type="PanelContainer"]
- custom_minimum_size = Vector2(160, 96)
- offset_right = 160.0
- offset_bottom = 96.0
- theme = ExtResource("1_dnsxy")
- script = ExtResource("2_fbark")
- [node name="ItemContainer" type="ScrollContainer" parent="."]
- custom_minimum_size = Vector2(34, 34)
- layout_mode = 2
- size_flags_vertical = 3
- horizontal_scroll_mode = 3
- [node name="Grid" type="GridContainer" parent="ItemContainer"]
- clip_contents = true
- layout_mode = 2
- size_flags_horizontal = 3
- size_flags_vertical = 3
- theme_override_constants/h_separation = 4
- theme_override_constants/v_separation = 4
- script = ExtResource("3_2xdy7")
- maxCount = 17
- [connection signal="gui_input" from="." to="." method="OnGuiInput"]
- [connection signal="gui_input" from="ItemContainer/Grid" to="ItemContainer/Grid" method="_on_gui_input"]
- [connection signal="resized" from="ItemContainer/Grid" to="ItemContainer/Grid" method="_on_panel_resized"]
|