progress
This commit is contained in:
8
scenes/kq4_015_frog_pond/flowers_polygon.tres
Normal file
8
scenes/kq4_015_frog_pond/flowers_polygon.tres
Normal file
@@ -0,0 +1,8 @@
|
||||
[gd_resource type="Resource" script_class="PolygonPointsResource" format=3 uid="uid://bghrjlvgh1yow"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dtemboas3bi8y" path="res://PolygonPointsResource.gd" id="1_ppr"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_ppr")
|
||||
points = PackedVector2Array(2495, 0, 2495, 1391, 0, 1391, 0, 0)
|
||||
metadata/_custom_type_script = "uid://dtemboas3bi8y"
|
||||
1
scenes/kq4_015_frog_pond/flowers_polygon.tres.uid
Normal file
1
scenes/kq4_015_frog_pond/flowers_polygon.tres.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://3icunzb7gg3za
|
||||
@@ -19,3 +19,27 @@ func _on_bridge_over_stream_interacted() -> void:
|
||||
|
||||
func _on_shady_wooded_area_interacted_from_9() -> void:
|
||||
$kq4_009_shady_wooded_area.default_script(self)
|
||||
|
||||
|
||||
func _on_lilypads_looked() -> void:
|
||||
start_main_script(ScriptBuilder.init(
|
||||
ScriptBuilder.say(ego, "Many water lilies float upon this little pond.")
|
||||
).build(self, "_on_script_complete"))
|
||||
|
||||
|
||||
func _on_pond_looked() -> void:
|
||||
start_main_script(ScriptBuilder.init(
|
||||
ScriptBuilder.say(ego, "This is a very pretty little pond. Floating upon it are many beautiful water lilies.")
|
||||
).build(self, "_on_script_complete"))
|
||||
|
||||
|
||||
func _on_flowers_looked() -> void:
|
||||
start_main_script(ScriptBuilder.init(
|
||||
ScriptBuilder.say(ego, "You see flowers here and there.")
|
||||
).build(self, "_on_script_complete"))
|
||||
|
||||
|
||||
func _on_room_looked() -> void:
|
||||
start_main_script(ScriptBuilder.init(
|
||||
ScriptBuilder.say(ego, "You stand beside a peaceful frog pond.")
|
||||
).build(self, "_on_script_complete"))
|
||||
|
||||
@@ -4,6 +4,10 @@
|
||||
[ext_resource type="Texture2D" uid="uid://bil34dk1pnd7b" path="res://scenes/kq4_015_frog_pond/caption_2_2697930471_generated.png" id="2_erond"]
|
||||
[ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"]
|
||||
[ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"]
|
||||
[ext_resource type="Resource" uid="uid://3v71oyr55gdir" path="res://scenes/kq4_015_frog_pond/lilypads_polygon.tres" id="5_abc"]
|
||||
[ext_resource type="Resource" uid="uid://3icunzb7gg3za" path="res://scenes/kq4_015_frog_pond/flowers_polygon.tres" id="6_abc"]
|
||||
[ext_resource type="Resource" uid="uid://39q63aoolsg51" path="res://scenes/kq4_015_frog_pond/pond_polygon.tres" id="7_abc"]
|
||||
[ext_resource type="Script" uid="uid://bv7oxo5y5u6xo" path="res://SetPiece_.gd" id="8_abc"]
|
||||
|
||||
[sub_resource type="NavigationPolygon" id="NavigationPolygon_ppo6b"]
|
||||
vertices = PackedVector2Array(366.85156, 1243.1484, -140.97656, 1182.2422, -76.0625, 588.09375, -30.171875, 216.07031, 1221.4063, 226.97656, 1994.1406, 468.39844, 2011.7969, 1321.9766, 1052.7422, 1419.8672, -76.0625, 588.0781)
|
||||
@@ -89,10 +93,28 @@ position = Vector2(118, 514)
|
||||
[node name="exit" parent="kq4_021_bridge_over_stream" index="1"]
|
||||
position = Vector2(151, 615)
|
||||
|
||||
[node name="lilypads" type="Polygon2D" parent="." instance=ExtResource("8_abc")]
|
||||
scale = Vector2(0.78, 0.78)
|
||||
polygon = PackedVector2Array(1132, 680, 1210, 700, 1237, 745, 1207, 795, 1127, 805, 1093, 760, 1103, 709)
|
||||
label = "Lily Pads"
|
||||
|
||||
[node name="flowers" type="Polygon2D" parent="." instance=ExtResource("8_abc")]
|
||||
scale = Vector2(0.78, 0.78)
|
||||
polygon = PackedVector2Array(1527, 820, 1564, 814, 1584, 840, 1559, 866, 1527, 858)
|
||||
label = "Flowers"
|
||||
|
||||
[node name="pond" type="Polygon2D" parent="." instance=ExtResource("8_abc")]
|
||||
scale = Vector2(0.78, 0.78)
|
||||
polygon = PackedVector2Array(952, 596, 1180, 597, 1339, 664, 1417, 780, 1391, 918, 1180, 964, 940, 891, 876, 769, 888, 657)
|
||||
label = "Pond"
|
||||
|
||||
[connection signal="interacted" from="kq4_009_shady_wooded_area" to="." method="_on_shady_wooded_area_interacted"]
|
||||
[connection signal="interacted" from="kq4_016_graveyard" to="." method="_on_graveyard_interacted"]
|
||||
[connection signal="interacted" from="kq4_014_green_meadow" to="." method="_on_green_meadow_interacted"]
|
||||
[connection signal="interacted" from="kq4_021_bridge_over_stream" to="." method="_on_bridge_over_stream_interacted"]
|
||||
[connection signal="looked" from="lilypads" to="." method="_on_lilypads_looked"]
|
||||
[connection signal="looked" from="pond" to="." method="_on_pond_looked"]
|
||||
[connection signal="looked" from="flowers" to="." method="_on_flowers_looked"]
|
||||
|
||||
[editable path="kq4_009_shady_wooded_area"]
|
||||
[editable path="kq4_016_graveyard"]
|
||||
|
||||
8
scenes/kq4_015_frog_pond/lilypads_polygon.tres
Normal file
8
scenes/kq4_015_frog_pond/lilypads_polygon.tres
Normal file
@@ -0,0 +1,8 @@
|
||||
[gd_resource type="Resource" script_class="PolygonPointsResource" format=3 uid="uid://budxklde6077f"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dtemboas3bi8y" path="res://PolygonPointsResource.gd" id="1_ppr"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_ppr")
|
||||
points = PackedVector2Array(1568, 1006, 1500, 1067, 1323, 1098, 1235, 1091, 562, 845, 632, 802, 879, 807)
|
||||
metadata/_custom_type_script = "uid://dtemboas3bi8y"
|
||||
1
scenes/kq4_015_frog_pond/lilypads_polygon.tres.uid
Normal file
1
scenes/kq4_015_frog_pond/lilypads_polygon.tres.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://3v71oyr55gdir
|
||||
8
scenes/kq4_015_frog_pond/pond_polygon.tres
Normal file
8
scenes/kq4_015_frog_pond/pond_polygon.tres
Normal file
@@ -0,0 +1,8 @@
|
||||
[gd_resource type="Resource" script_class="PolygonPointsResource" format=3 uid="uid://b7v3xu8wnecuo"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dtemboas3bi8y" path="res://PolygonPointsResource.gd" id="1_ppr"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_ppr")
|
||||
points = PackedVector2Array(1912, 732, 1899, 982, 1735, 1046, 1068, 1174, 591, 1053, 389, 834, 466, 787, 919, 701, 1501, 678)
|
||||
metadata/_custom_type_script = "uid://dtemboas3bi8y"
|
||||
1
scenes/kq4_015_frog_pond/pond_polygon.tres.uid
Normal file
1
scenes/kq4_015_frog_pond/pond_polygon.tres.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://39q63aoolsg51
|
||||
Reference in New Issue
Block a user