41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
[gd_scene load_steps=3 format=3 uid="uid://bdbnxj1au1iir"]
|
|
|
|
[ext_resource type="Script" uid="uid://hsks1qah12sh" path="res://quest_board_entry.gd" id="1_qfdrh"]
|
|
[ext_resource type="Texture2D" uid="uid://bldpiytpdrge6" path="res://icon.svg" id="2_ovx2i"]
|
|
|
|
[node name="QuestBoardEntry" type="Button"]
|
|
custom_minimum_size = Vector2(200, 50)
|
|
offset_right = 200.0
|
|
offset_bottom = 50.0
|
|
script = ExtResource("1_qfdrh")
|
|
|
|
[node name="HBoxContainer" type="HBoxContainer" parent="."]
|
|
layout_mode = 0
|
|
offset_right = 40.0
|
|
offset_bottom = 40.0
|
|
mouse_filter = 2
|
|
|
|
[node name="Icon" type="TextureRect" parent="HBoxContainer"]
|
|
unique_name_in_owner = true
|
|
custom_minimum_size = Vector2(50, 50)
|
|
layout_mode = 2
|
|
mouse_filter = 2
|
|
texture = ExtResource("2_ovx2i")
|
|
expand_mode = 1
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="HBoxContainer"]
|
|
layout_mode = 2
|
|
mouse_filter = 2
|
|
|
|
[node name="NameLabel" type="Label" parent="HBoxContainer/VBoxContainer"]
|
|
unique_name_in_owner = true
|
|
layout_mode = 2
|
|
text = "Quest Name"
|
|
|
|
[node name="StatusLabel" type="Label" parent="HBoxContainer/VBoxContainer"]
|
|
unique_name_in_owner = true
|
|
layout_mode = 2
|
|
text = "Quest Status"
|
|
|
|
[connection signal="pressed" from="." to="." method="_on_pressed"]
|