Work on quest locations and the first, brokedown guildhall scene.

This commit is contained in:
2025-09-27 18:19:22 -04:00
parent 023e88b84e
commit 00ef506689
19 changed files with 854 additions and 121 deletions

View File

@@ -1,10 +1,12 @@
[gd_scene load_steps=17 format=3 uid="uid://dcpuaq3fcwyxs"]
[gd_scene load_steps=19 format=3 uid="uid://dcpuaq3fcwyxs"]
[ext_resource type="Script" uid="uid://dkrxdaq8d6q55" path="res://scripts/guild_card_scene.gd" id="1_hj0e5"]
[ext_resource type="Texture2D" uid="uid://c5hcva1k5qee0" path="res://external/guildcard-portrait-placeholder.png" id="1_mmvi8"]
[ext_resource type="Shader" uid="uid://uxrvcuhjnjgl" path="res://shaders/animated_gradient.gdshader" id="3_3vymb"]
[ext_resource type="PackedScene" uid="uid://drshemnag35re" path="res://templates/hero_portrait.tscn" id="3_tnttg"]
[ext_resource type="Texture2D" uid="uid://hdjte1ipyyio" path="res://external/signature.png" id="4_ht11g"]
[ext_resource type="AudioStream" uid="uid://bmm8jhojdt31a" path="res://sounds/Writing in paper 19.wav" id="5_ht11g"]
[ext_resource type="PackedScene" uid="uid://dno0a4457twd4" path="res://templates/portrait_customizer.tscn" id="7_q4kfw"]
[sub_resource type="Gradient" id="Gradient_hj0e5"]
colors = PackedColorArray(1, 1, 1, 1, 1, 1, 1, 1)
@@ -205,6 +207,41 @@ mouse_filter = 2
texture = ExtResource("1_mmvi8")
expand_mode = 1
[node name="PortraitContainer" type="Control" parent="GuildCard"]
unique_name_in_owner = true
visible = false
anchors_preset = 0
offset_left = 9.0
offset_top = 58.0
offset_right = 213.0
offset_bottom = 263.0
mouse_filter = 2
[node name="ColorRect" type="ColorRect" parent="GuildCard/PortraitContainer"]
layout_mode = 0
offset_right = 204.8
offset_bottom = 205.0
mouse_filter = 2
[node name="ColorRect2" type="ColorRect" parent="GuildCard/PortraitContainer"]
clip_contents = true
layout_mode = 0
offset_left = 14.0
offset_top = 14.0
offset_right = 189.0
offset_bottom = 189.0
mouse_filter = 2
color = Color(0.48570347, 0.48570353, 0.48570347, 1)
[node name="HeroPortrait" parent="GuildCard/PortraitContainer/ColorRect2" instance=ExtResource("3_tnttg")]
unique_name_in_owner = true
layout_mode = 0
offset_left = -2.0
offset_right = 510.0
offset_bottom = 512.0
scale = Vector2(0.35, 0.35)
mouse_filter = 1
[node name="Label" type="Label" parent="GuildCard"]
layout_mode = 0
offset_left = 187.0
@@ -272,6 +309,7 @@ offset_bottom = 380.0
theme_override_colors/font_color = Color(0.2775273, 0.27752793, 0.27752748, 1)
theme_override_font_sizes/font_size = 48
theme_override_styles/normal = SubResource("StyleBoxFlat_q4kfw")
disabled = true
text = "(Sign Here)"
[node name="HSeparator" type="HSeparator" parent="GuildCard"]
@@ -317,7 +355,13 @@ texture = ExtResource("4_ht11g")
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource("5_ht11g")
[node name="PortraitCustomizer" parent="." instance=ExtResource("7_q4kfw")]
visible = false
z_index = 10
layout_mode = 1
[connection signal="pressed" from="GuildCard/PortraitButton" to="." method="_on_portrait_button_pressed"]
[connection signal="text_changed" from="GuildCard/FirstNameEdit" to="." method="_on_first_name_edit_text_changed"]
[connection signal="text_changed" from="GuildCard/LastNameEdit" to="." method="_on_last_name_edit_text_changed"]
[connection signal="pressed" from="GuildCard/SignButton" to="." method="_on_sign_button_pressed"]
[connection signal="portrait_customized" from="PortraitCustomizer" to="." method="_on_portrait_customized"]