This commit is contained in:
Bryce
2025-12-21 12:48:00 -08:00
parent 93f5522d3d
commit 77a9f73331
81 changed files with 722 additions and 106 deletions

BIN
scenes/meadow/ComfyUI_09941_.png LFS Normal file

Binary file not shown.

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://mo525tcuoqes"
path="res://.godot/imported/ComfyUI_09941_.png-6513a86ca732c2467a880a0a20356858.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://scenes/meadow/ComfyUI_09941_.png"
dest_files=["res://.godot/imported/ComfyUI_09941_.png-6513a86ca732c2467a880a0a20356858.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

9
scenes/meadow/meadow.gd Normal file
View File

@@ -0,0 +1,9 @@
extends Scene
func _on_pool_interacted() -> void:
$pool.default_script(self)
func _on_oceanside_interacted() -> void:
$oceanside.default_script(self)

View File

@@ -0,0 +1 @@
uid://b7elji15ea6kg

70
scenes/meadow/meadow.tscn Normal file
View File

@@ -0,0 +1,70 @@
[gd_scene load_steps=6 format=3 uid="uid://dnyfhcvbsecvy"]
[ext_resource type="Script" uid="uid://b7elji15ea6kg" path="res://scenes/meadow/meadow.gd" id="1_bn14v"]
[ext_resource type="Texture2D" uid="uid://mo525tcuoqes" path="res://scenes/meadow/ComfyUI_09941_.png" id="2_bn14v"]
[ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_6lc2m"]
[ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_nrc7r"]
[sub_resource type="NavigationPolygon" id="NavigationPolygon_ppo6b"]
vertices = PackedVector2Array(1263.16, 1113.2, 424.328, 1143.23, 1026.63, 865.109, 1359.65, 949.383, 1238.89, 383.039, 1994.29, 469.938, 2012.62, 1017.85, 1025.28, 850.992, -53.8672, 491.352, -74.0469, 579.641)
polygons = Array[PackedInt32Array]([PackedInt32Array(0, 1, 2, 3), PackedInt32Array(4, 5, 6, 3, 2, 7), PackedInt32Array(8, 4, 7, 9)])
outlines = Array[PackedVector2Array]([PackedVector2Array(-62, 482, 1239, 373, 2004, 461, 2023, 1029, 1365, 960, 1269, 1123, 375, 1155, 1016, 859, -86, 587)])
[node name="background" type="Node2D"]
y_sort_enabled = true
script = ExtResource("1_bn14v")
[node name="bg" type="Sprite2D" parent="."]
scale = Vector2(0.470459, 0.467949)
texture = ExtResource("2_bn14v")
centered = false
[node name="StartScalePoint" type="Node2D" parent="."]
position = Vector2(1476, 742)
script = ExtResource("3_6lc2m")
target_scale = 0.25
[node name="EndScalePoint" type="Node2D" parent="."]
position = Vector2(1408, 1097)
scale = Vector2(0.44, 0.44)
script = ExtResource("3_6lc2m")
target_scale = 0.35
[node name="pathfind" type="NavigationRegion2D" parent="."]
position = Vector2(-1, 0)
navigation_polygon = SubResource("NavigationPolygon_ppo6b")
[node name="default-starting-point" type="Node2D" parent="."]
position = Vector2(194, 819)
[node name="pool" parent="." instance=ExtResource("4_nrc7r")]
position = Vector2(1912, 756)
color = Color(1, 1, 1, 1)
polygon = PackedVector2Array(-494, -59, -243, 202, 175, 224, 179, -443, -128, -497)
target_transition = "meadow"
target = "uid://dx5rhiwa1tnvx"
label = "Pool"
[node name="entrance" parent="pool" index="0"]
position = Vector2(7, 73)
[node name="exit" parent="pool" index="1"]
position = Vector2(66, 71)
[node name="oceanside" parent="." instance=ExtResource("4_nrc7r")]
polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381)
target_transition = "meadow"
target = "uid://bnywifkj64juu"
label = "Oceanside"
[node name="entrance" parent="oceanside" index="0"]
position = Vector2(506, 555)
[node name="exit" parent="oceanside" index="1"]
position = Vector2(-64, 534)
[connection signal="interacted" from="pool" to="." method="_on_pool_interacted"]
[connection signal="interacted" from="oceanside" to="." method="_on_oceanside_interacted"]
[editable path="pool"]
[editable path="oceanside"]