Files
Cozypaw-Hospital/scenes/rooms/floor2/Ultrasound.tscn
T
Steven Wroblewski cd3ce7bf6e 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>
2026-05-09 01:24:18 +02:00

66 lines
2.1 KiB
Plaintext

[gd_scene load_steps=5 format=3 uid="uid://cozypaw_ultrasound"]
[ext_resource type="PackedScene" path="res://scenes/objects/InteractiveObject.tscn" id="1_iobj"]
[ext_resource type="PackedScene" path="res://scenes/objects/UltrasoundMachine.tscn" id="2_ultrasound"]
[ext_resource type="Script" path="res://scripts/objects/snap_point.gd" id="3_snap"]
[ext_resource type="Script" path="res://scripts/objects/room_chest.gd" id="4_chest"]
[node name="Ultrasound" type="Node2D"]
[node name="Background" type="ColorRect" parent="."]
color = Color(0.92, 0.90, 0.96, 1)
size = Vector2(1280, 720)
position = Vector2(0, 0)
[node name="Floor" type="ColorRect" parent="."]
color = Color(0.80, 0.78, 0.84, 1)
size = Vector2(1280, 100)
position = Vector2(0, 620)
[node name="WallLeft" type="ColorRect" parent="."]
color = Color(0.90, 0.88, 0.94, 1)
size = Vector2(40, 620)
position = Vector2(0, 0)
[node name="WallRight" type="ColorRect" parent="."]
color = Color(0.90, 0.88, 0.94, 1)
size = Vector2(40, 620)
position = Vector2(1240, 0)
[node name="ExamTable" type="ColorRect" parent="."]
color = Color(0.84, 0.86, 0.90, 1)
size = Vector2(340, 40)
position = Vector2(300, 490)
[node name="ExamTableLeg1" type="ColorRect" parent="."]
color = Color(0.65, 0.68, 0.74, 1)
size = Vector2(16, 130)
position = Vector2(320, 530)
[node name="ExamTableLeg2" type="ColorRect" parent="."]
color = Color(0.65, 0.68, 0.74, 1)
size = Vector2(16, 130)
position = Vector2(608, 530)
[node name="CharacterSpawn" type="Marker2D" parent="."]
position = Vector2(160, 490)
[node name="UltrasoundMachine" parent="." instance=ExtResource("2_ultrasound")]
position = Vector2(780, 490)
[node name="GelBottle" parent="." instance=ExtResource("1_iobj")]
position = Vector2(920, 450)
[node name="Blanket" parent="." instance=ExtResource("1_iobj")]
position = Vector2(480, 450)
[node name="SnapExamTable" type="Node2D" parent="."]
position = Vector2(470, 480)
script = ExtResource("3_snap")
pose = "lying"
[node name="UltrasoundCart" type="Node2D" parent="."]
position = Vector2(150.0, 400.0)
script = ExtResource("4_chest")
chest_id = "ultrasound_cart"