feat(lab): add Lab room with bench, sink, and interactive lab equipment
This commit is contained in:
70
scenes/rooms/floor1/Lab.tscn
Normal file
70
scenes/rooms/floor1/Lab.tscn
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
[gd_scene load_steps=2 format=3 uid="uid://cozypaw_lab"]
|
||||||
|
|
||||||
|
[ext_resource type="PackedScene" path="res://scenes/objects/InteractiveObject.tscn" id="1_iobj"]
|
||||||
|
|
||||||
|
[node name="Lab" type="Node2D"]
|
||||||
|
|
||||||
|
[node name="Background" type="ColorRect" parent="."]
|
||||||
|
color = Color(0.90, 0.94, 0.96, 1)
|
||||||
|
size = Vector2(1280, 720)
|
||||||
|
position = Vector2(0, 0)
|
||||||
|
|
||||||
|
[node name="Floor" type="ColorRect" parent="."]
|
||||||
|
color = Color(0.78, 0.82, 0.86, 1)
|
||||||
|
size = Vector2(1280, 100)
|
||||||
|
position = Vector2(0, 620)
|
||||||
|
|
||||||
|
[node name="WallLeft" type="ColorRect" parent="."]
|
||||||
|
color = Color(0.88, 0.92, 0.94, 1)
|
||||||
|
size = Vector2(40, 620)
|
||||||
|
position = Vector2(0, 0)
|
||||||
|
|
||||||
|
[node name="WallRight" type="ColorRect" parent="."]
|
||||||
|
color = Color(0.88, 0.92, 0.94, 1)
|
||||||
|
size = Vector2(40, 620)
|
||||||
|
position = Vector2(1240, 0)
|
||||||
|
|
||||||
|
[node name="LabBench" type="ColorRect" parent="."]
|
||||||
|
color = Color(0.88, 0.88, 0.92, 1)
|
||||||
|
size = Vector2(800, 40)
|
||||||
|
position = Vector2(240, 480)
|
||||||
|
|
||||||
|
[node name="LabBenchFront" type="ColorRect" parent="."]
|
||||||
|
color = Color(0.70, 0.72, 0.78, 1)
|
||||||
|
size = Vector2(800, 16)
|
||||||
|
position = Vector2(240, 520)
|
||||||
|
|
||||||
|
[node name="LabBenchLegLeft" type="ColorRect" parent="."]
|
||||||
|
color = Color(0.70, 0.72, 0.78, 1)
|
||||||
|
size = Vector2(16, 140)
|
||||||
|
position = Vector2(260, 536)
|
||||||
|
|
||||||
|
[node name="LabBenchLegRight" type="ColorRect" parent="."]
|
||||||
|
color = Color(0.70, 0.72, 0.78, 1)
|
||||||
|
size = Vector2(16, 140)
|
||||||
|
position = Vector2(1008, 536)
|
||||||
|
|
||||||
|
[node name="Sink" type="ColorRect" parent="."]
|
||||||
|
color = Color(0.75, 0.80, 0.84, 1)
|
||||||
|
size = Vector2(100, 50)
|
||||||
|
position = Vector2(1060, 430)
|
||||||
|
|
||||||
|
[node name="SinkBase" type="ColorRect" parent="."]
|
||||||
|
color = Color(0.60, 0.64, 0.68, 1)
|
||||||
|
size = Vector2(100, 190)
|
||||||
|
position = Vector2(1060, 480)
|
||||||
|
|
||||||
|
[node name="CharacterSpawn" type="Marker2D" parent="."]
|
||||||
|
position = Vector2(200, 490)
|
||||||
|
|
||||||
|
[node name="Microscope" parent="." instance=ExtResource("1_iobj")]
|
||||||
|
position = Vector2(380, 450)
|
||||||
|
|
||||||
|
[node name="TestTubeRack" parent="." instance=ExtResource("1_iobj")]
|
||||||
|
position = Vector2(600, 450)
|
||||||
|
|
||||||
|
[node name="ReagentBottle" parent="." instance=ExtResource("1_iobj")]
|
||||||
|
position = Vector2(820, 450)
|
||||||
|
|
||||||
|
[node name="PetriDish" parent="." instance=ExtResource("1_iobj")]
|
||||||
|
position = Vector2(490, 450)
|
||||||
Reference in New Issue
Block a user