Moved everything into a file system. Links broken.

This commit is contained in:
2025-08-10 03:58:03 -04:00
parent 4e0b42eb23
commit 434216ca29
182 changed files with 1141 additions and 252 deletions

View File

@@ -0,0 +1,41 @@
[gd_scene load_steps=3 format=3 uid="uid://bdbnxj1au1iir"]
[ext_resource type="Script" uid="uid://hsks1qah12sh" path="res://scripts/quest_board_entry.gd" id="1_54wmk"]
[ext_resource type="Texture2D" uid="uid://bldpiytpdrge6" path="res://graphics/icon.svg" id="2_1ihiv"]
[node name="QuestBoardEntry" type="Button"]
custom_minimum_size = Vector2(200, 50)
anchors_preset = -1
offset_right = 200.0
offset_bottom = 50.0
script = ExtResource("1_54wmk")
[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_1ihiv")
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"]