This commit is contained in:
Bryce
2026-02-21 12:18:48 -08:00
parent ff6d30259b
commit d6b36d1f13
97 changed files with 2329 additions and 68 deletions

View File

@@ -1,9 +1,17 @@
extends Scene
func _on_meadow_interacted() -> void:
$kq4_002_meadow.default_script(self)
func _on_ogre_house_interacted() -> void:
$kq4_004_ogres_cottage.default_script(self)
func _on_shady_wooded_area_interacted() -> void:
$kq4_009_shady_wooded_area.default_script(self)
func _on_forest_path_interacted() -> void:
$kq4_010_forest_path.default_script(self)

View File

@@ -38,6 +38,32 @@ navigation_polygon = SubResource("NavigationPolygon_heq0u")
[node name="default-starting-point" type="Node2D" parent="."]
position = Vector2(194, 819)
[node name="kq4_002_meadow" parent="." instance=ExtResource("4_6r684")]
position = Vector2(-150, 100)
polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381)
appear_at_node = "kq4_003_fountain_pool"
target = "uid://1489d4oh9twtu"
label = "Meadow"
[node name="entrance" parent="kq4_002_meadow" index="0"]
position = Vector2(350, 500)
[node name="exit" parent="kq4_002_meadow" index="1"]
position = Vector2(100, 480)
[node name="kq4_010_forest_path" parent="." instance=ExtResource("4_6r684")]
position = Vector2(910, -213)
polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381)
appear_at_node = "kq4_003_fountain_pool"
target = "uid://3ujj97iw54vo5"
label = "Forest Path"
[node name="entrance" parent="kq4_010_forest_path" index="0"]
position = Vector2(133, 643)
[node name="exit" parent="kq4_010_forest_path" index="1"]
position = Vector2(174, 519)
[node name="kq4_004_ogres_cottage" parent="." instance=ExtResource("4_6r684")]
position = Vector2(1912, 756)
color = Color(1, 1, 1, 1)
@@ -70,8 +96,11 @@ scale = Vector2(1.163, 1.179)
texture = ExtResource("5_cu368")
centered = false
[connection signal="interacted" from="kq4_002_meadow" to="." method="_on_meadow_interacted"]
[connection signal="interacted" from="kq4_010_forest_path" to="." method="_on_forest_path_interacted"]
[connection signal="interacted" from="kq4_004_ogres_cottage" to="." method="_on_ogre_house_interacted"]
[connection signal="interacted" from="kq4_009_shady_wooded_area" to="." method="_on_shady_wooded_area_interacted"]
[editable path="kq4_002_meadow"]
[editable path="kq4_004_ogres_cottage"]
[editable path="kq4_009_shady_wooded_area"]