From 0247c30d45a2213ca6c4d45bdc3ab57a9ca6d1a8 Mon Sep 17 00:00:00 2001 From: Steven Wroblewski Date: Fri, 17 Apr 2026 21:24:17 +0200 Subject: [PATCH] feat(garden): add GardenParty scene with table, gifts, teapot, balloons, and return button --- scenes/rooms/home/GardenParty.tscn | 86 ++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 scenes/rooms/home/GardenParty.tscn diff --git a/scenes/rooms/home/GardenParty.tscn b/scenes/rooms/home/GardenParty.tscn new file mode 100644 index 0000000..13b19de --- /dev/null +++ b/scenes/rooms/home/GardenParty.tscn @@ -0,0 +1,86 @@ +[gd_scene load_steps=4 format=3 uid="uid://cozypaw_gardenparty"] + +[ext_resource type="PackedScene" path="res://scenes/objects/GiftBox.tscn" id="1_giftbox"] +[ext_resource type="PackedScene" path="res://scenes/objects/TeaPot.tscn" id="2_teapot"] +[ext_resource type="PackedScene" path="res://scenes/objects/HomeButton.tscn" id="3_homebtn"] + +[node name="GardenParty" type="Node2D"] + +[node name="Sky" type="ColorRect" parent="."] +offset_left = 0.0 +offset_top = 0.0 +offset_right = 1280.0 +offset_bottom = 400.0 +color = Color(0.53, 0.81, 0.98, 1) + +[node name="Grass" type="ColorRect" parent="."] +offset_left = 0.0 +offset_top = 400.0 +offset_right = 1280.0 +offset_bottom = 720.0 +color = Color(0.55, 0.76, 0.46, 1) + +[node name="GroundEdge" type="ColorRect" parent="."] +offset_left = 0.0 +offset_top = 392.0 +offset_right = 1280.0 +offset_bottom = 404.0 +color = Color(0.38, 0.62, 0.32, 1) + +[node name="TableTop" type="ColorRect" parent="."] +offset_left = 440.0 +offset_top = 464.0 +offset_right = 840.0 +offset_bottom = 480.0 +color = Color(0.82, 0.66, 0.46, 1) + +[node name="TableLeg1" type="ColorRect" parent="."] +offset_left = 456.0 +offset_top = 480.0 +offset_right = 472.0 +offset_bottom = 580.0 +color = Color(0.70, 0.52, 0.34, 1) + +[node name="TableLeg2" type="ColorRect" parent="."] +offset_left = 808.0 +offset_top = 480.0 +offset_right = 824.0 +offset_bottom = 580.0 +color = Color(0.70, 0.52, 0.34, 1) + +[node name="TeaPot" parent="." instance=ExtResource("2_teapot")] +position = Vector2(510, 464) + +[node name="GiftBox1" parent="." instance=ExtResource("1_giftbox")] +position = Vector2(640, 464) + +[node name="GiftBox2" parent="." instance=ExtResource("1_giftbox")] +position = Vector2(730, 464) + +[node name="GiftBox3" parent="." instance=ExtResource("1_giftbox")] +position = Vector2(820, 464) + +[node name="TeaCup" type="ColorRect" parent="."] +offset_left = 558.0 +offset_top = 440.0 +offset_right = 590.0 +offset_bottom = 464.0 +color = Color(0.96, 0.92, 0.84, 1) + +[node name="Balloon1" type="ColorRect" parent="."] +offset_left = 180.0 +offset_top = 120.0 +offset_right = 220.0 +offset_bottom = 180.0 +color = Color(0.96, 0.44, 0.44, 1) + +[node name="Balloon2" type="ColorRect" parent="."] +offset_left = 1020.0 +offset_top = 100.0 +offset_right = 1060.0 +offset_bottom = 160.0 +color = Color(0.56, 0.76, 0.96, 1) + +[node name="HomeButtonReturn" parent="." instance=ExtResource("3_homebtn")] +position = Vector2(100, 620) +go_to_garden = false