feat(rooms): add RoomChest nodes to Floor 2 and Home rooms
Add UltrasoundCart, DeliveryCabinet, NurseryShelf, GardenTable, GardenStorage chest nodes to their respective scenes. All 10 new tests pass (196 total). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
[gd_scene load_steps=5 format=3 uid="uid://cozypaw_gardenparty"]
|
||||
[gd_scene load_steps=6 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"]
|
||||
[ext_resource type="Script" path="res://scripts/objects/snap_point.gd" id="4_snap"]
|
||||
[ext_resource type="Script" path="res://scripts/objects/room_chest.gd" id="5_chest"]
|
||||
|
||||
[node name="GardenParty" type="Node2D"]
|
||||
|
||||
@@ -93,3 +94,13 @@ script = ExtResource("4_snap")
|
||||
[node name="SnapTableRight" type="Node2D" parent="."]
|
||||
position = Vector2(750, 455)
|
||||
script = ExtResource("4_snap")
|
||||
|
||||
[node name="GardenTable" type="Node2D" parent="."]
|
||||
position = Vector2(200.0, 400.0)
|
||||
script = ExtResource("5_chest")
|
||||
chest_id = "garden_table"
|
||||
|
||||
[node name="GardenStorage" type="Node2D" parent="."]
|
||||
position = Vector2(900.0, 400.0)
|
||||
script = ExtResource("5_chest")
|
||||
chest_id = "garden_storage"
|
||||
|
||||
Reference in New Issue
Block a user