604 lines
31 KiB
Text
604 lines
31 KiB
Text
[gd_scene format=3 uid="uid://bopapid0k4qkr"]
|
|
|
|
[ext_resource type="PackedScene" uid="uid://csr23278g4hqe" path="res://objects/player_body.tscn" id="1_2venv"]
|
|
[ext_resource type="PackedScene" uid="uid://c3vfkbypjxxpr" path="res://scenes/game_over_screen.tscn" id="1_13hs1"]
|
|
[ext_resource type="PackedScene" uid="uid://csss0odg2jre1" path="res://objects/ui/hud.tscn" id="1_88ety"]
|
|
[ext_resource type="AudioStream" uid="uid://criw03v3dtfo1" path="res://assets/music/koen_punk_track_drumalong.ogg" id="1_fptmo"]
|
|
[ext_resource type="PackedScene" uid="uid://881tkl7idnnj" path="res://objects/ui/pause_menu.tscn" id="2_ahbqi"]
|
|
[ext_resource type="PackedScene" uid="uid://ct650octef6l3" path="res://objects/destructable_props/table.tscn" id="2_paw1w"]
|
|
[ext_resource type="PackedScene" uid="uid://c7d4prmswk5cq" path="res://scenes/level_end_screen.tscn" id="3_kpk0m"]
|
|
[ext_resource type="PackedScene" uid="uid://bjeuinxmt12hu" path="res://scenes/data_center.tscn" id="6_13hs1"]
|
|
[ext_resource type="PackedScene" uid="uid://bw4dstm6d5s20" path="res://objects/destructable_props/cubicle.tscn" id="6_qcd3b"]
|
|
[ext_resource type="Material" uid="uid://dn4cvbp52l26s" path="res://assets/environment/materials/elevator_inside.tres" id="7_dw7u0"]
|
|
[ext_resource type="PackedScene" uid="uid://bxwd0vai5bwh1" path="res://objects/destructable_props/combo_gate.tscn" id="8_fyxdr"]
|
|
[ext_resource type="PackedScene" uid="uid://dj8ahau6dm3cq" path="res://objects/destructable_props/elevator_door.tscn" id="9_7gix3"]
|
|
[ext_resource type="PackedScene" uid="uid://dvciawehreq0l" path="res://objects/destructable_props/plant.tscn" id="10_fptmo"]
|
|
[ext_resource type="PackedScene" uid="uid://duv72bvrnw7gj" path="res://objects/enemies/enemy_spawner.tscn" id="11_dw7u0"]
|
|
[ext_resource type="Material" uid="uid://mqs2kwpmw62s" path="res://assets/environment/materials/panels.tres" id="11_qs1vn"]
|
|
[ext_resource type="PackedScene" uid="uid://dm2jmbd4xgboj" path="res://objects/destructable_props/special_gate.tscn" id="14_qs1vn"]
|
|
|
|
[sub_resource type="GDScript" id="GDScript_7gix3"]
|
|
resource_name = "SwitchableCamera"
|
|
script/source = "extends Camera3D
|
|
|
|
@onready var area : Area3D = get_parent() as Area3D
|
|
|
|
func _ready():
|
|
if is_instance_valid(area):
|
|
area.body_entered.connect(_on_body_entered)
|
|
area.body_exited.connect(_on_body_exited)
|
|
|
|
func _on_body_entered(body: Node3D) -> void:
|
|
if body is PlayerBody:
|
|
make_current()
|
|
|
|
func _on_body_exited(body: Node3D) -> void:
|
|
if body is PlayerBody:
|
|
clear_current()
|
|
"
|
|
|
|
[sub_resource type="BoxShape3D" id="BoxShape3D_4asn1"]
|
|
size = Vector3(2.640747, 2.7940674, 1.8803711)
|
|
|
|
[sub_resource type="BoxShape3D" id="BoxShape3D_fyxdr"]
|
|
size = Vector3(3.4404297, 4.4296875, 3.8300781)
|
|
|
|
[sub_resource type="GDScript" id="GDScript_qs1vn"]
|
|
resource_name = "TriggerEnemySpawning"
|
|
script/source = "extends Area3D
|
|
|
|
func _ready():
|
|
body_entered.connect(_body_entered)
|
|
|
|
func _body_entered(node : Node):
|
|
if node is PlayerBody:
|
|
$\"..\".start_spawning()
|
|
queue_free()
|
|
"
|
|
|
|
[sub_resource type="BoxShape3D" id="BoxShape3D_qs1vn"]
|
|
size = Vector3(14.731445, 4.5390625, 13.790405)
|
|
|
|
[sub_resource type="BoxShape3D" id="BoxShape3D_13hs1"]
|
|
size = Vector3(21.418457, 4.5390625, 4.5966797)
|
|
|
|
[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_2venv"]
|
|
sky_horizon_color = Color(0.652763, 0.676338, 0.705513, 1)
|
|
ground_bottom_color = Color(0.154, 0.1793, 0.2, 1)
|
|
ground_horizon_color = Color(0.652763, 0.676338, 0.705513, 1)
|
|
|
|
[sub_resource type="Sky" id="Sky_ahbqi"]
|
|
sky_material = SubResource("ProceduralSkyMaterial_2venv")
|
|
|
|
[sub_resource type="Environment" id="Environment_j6w7d"]
|
|
background_mode = 2
|
|
sky = SubResource("Sky_ahbqi")
|
|
ambient_light_source = 2
|
|
ambient_light_color = Color(0.296, 0.313267, 0.37, 1)
|
|
tonemap_mode = 2
|
|
ssr_enabled = true
|
|
ssr_fade_in = 1.5428052
|
|
ssr_fade_out = 17.724531
|
|
ssao_enabled = true
|
|
glow_enabled = true
|
|
|
|
[node name="Office" type="Node3D" unique_id=935123528]
|
|
|
|
[node name="Music" type="AudioStreamPlayer" parent="." unique_id=903545865]
|
|
process_mode = 3
|
|
stream = ExtResource("1_fptmo")
|
|
autoplay = true
|
|
bus = &"Music"
|
|
|
|
[node name="LevelStatus" type="LevelStatus" parent="." unique_id=1098202036]
|
|
game_over_scene = ExtResource("1_13hs1")
|
|
|
|
[node name="HUD" parent="." unique_id=178524665 instance=ExtResource("1_88ety")]
|
|
|
|
[node name="PauseMenu" parent="." unique_id=973328140 instance=ExtResource("2_ahbqi")]
|
|
|
|
[node name="FixedCameraArea" type="Area3D" parent="." unique_id=927255712]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.824156, 0, -4.255384)
|
|
collision_layer = 0
|
|
collision_mask = 9
|
|
|
|
[node name="Camera3D" type="Camera3D" parent="FixedCameraArea" unique_id=365299470]
|
|
transform = Transform3D(0.49999985, -0.2570435, 0.8269999, -5.5611892e-08, 0.9549371, 0.29680827, -0.86602557, -0.14840414, 0.47746834, -2.3228655, 2.4325273, -16.04492)
|
|
current = true
|
|
fov = 82.33703
|
|
script = SubResource("GDScript_7gix3")
|
|
|
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="FixedCameraArea" unique_id=2137745917]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.800605, 1.3192751, -19.564665)
|
|
shape = SubResource("BoxShape3D_4asn1")
|
|
|
|
[node name="PlayerBody" parent="." unique_id=62983514 instance=ExtResource("1_2venv")]
|
|
transform = Transform3D(1, 0, 1.7484557e-07, 0, 1, 0, -1.7484557e-07, 0, 1, -12.473708, -0.04873693, -23.714245)
|
|
|
|
[node name="LevelEnd" type="LevelEnd" parent="." unique_id=874281525]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.660835, -10.796722, -7.0131807)
|
|
collision_layer = 8
|
|
collision_mask = 8
|
|
monitorable = false
|
|
intermission_screen = ExtResource("3_kpk0m")
|
|
next_level = ExtResource("6_13hs1")
|
|
|
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="LevelEnd" unique_id=1714722891]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12.494701, 0, -7.492898)
|
|
shape = SubResource("BoxShape3D_fyxdr")
|
|
|
|
[node name="EnemySpawner" parent="." unique_id=945354431 instance=ExtResource("11_dw7u0")]
|
|
transform = Transform3D(-1, 0, -8.742277e-08, 0, 1, 0, 8.742277e-08, 0, -1, 29.745615, 0.026108444, -21.585531)
|
|
|
|
[node name="Area3D" type="Area3D" parent="EnemySpawner" unique_id=1634440508]
|
|
transform = Transform3D(-4.371139e-08, 0, 1, 0, 1, 0, -1, 0, -4.371139e-08, 16.560429, 2.1725132, -6.794058)
|
|
top_level = true
|
|
collision_layer = 8
|
|
collision_mask = 8
|
|
script = SubResource("GDScript_qs1vn")
|
|
|
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="EnemySpawner/Area3D" unique_id=141780886]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7.484318, 0, 12.653255)
|
|
shape = SubResource("BoxShape3D_qs1vn")
|
|
|
|
[node name="EnemySpawner2" parent="." unique_id=37587382 instance=ExtResource("11_dw7u0")]
|
|
transform = Transform3D(-1, 0, -8.742277e-08, 0, 1, 0, 8.742277e-08, 0, -1, 13.157646, 0.026110351, -22.336252)
|
|
|
|
[node name="Area3D" type="Area3D" parent="EnemySpawner2" unique_id=1414446922]
|
|
transform = Transform3D(-4.371139e-08, 0, 1, 0, 1, 0, -1, 0, -4.371139e-08, 11.730025, 2.1725132, -4.458521)
|
|
top_level = true
|
|
collision_layer = 8
|
|
collision_mask = 8
|
|
script = SubResource("GDScript_qs1vn")
|
|
|
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="EnemySpawner2/Area3D" unique_id=1706737835]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.5594363, 0.0052394867, -0.0550766)
|
|
shape = SubResource("BoxShape3D_13hs1")
|
|
|
|
[node name="ComboGate" parent="." unique_id=1126960961 instance=ExtResource("14_qs1vn")]
|
|
transform = Transform3D(-4.371139e-08, 0, 1, 0, 1, 0, -1, 0, -4.371139e-08, 8.72764, -0.20132196, 0.51684093)
|
|
|
|
[node name="ComboGate2" parent="." unique_id=1431914949 instance=ExtResource("8_fyxdr")]
|
|
transform = Transform3D(-4.371139e-08, 0, 1, 0, 1, 0, -1, 0, -4.371139e-08, -7.4452767, -0.2423538, -17.60165)
|
|
|
|
[node name="elevator_door" parent="." unique_id=970339368 instance=ExtResource("9_7gix3")]
|
|
transform = Transform3D(1.3113416e-07, 0, -1, 0, 1, 0, 1, 0, 1.3113416e-07, -12.531841, 0.007903814, -22.66174)
|
|
|
|
[node name="elevator_door2" parent="." unique_id=713389186 instance=ExtResource("9_7gix3")]
|
|
transform = Transform3D(1, 0, 1.7484555e-07, 0, 1, 0, -1.7484555e-07, 0, 1, 36.653263, 0.008337975, -14.479151)
|
|
|
|
[node name="WorldEnvironment" type="WorldEnvironment" parent="." unique_id=1393410866]
|
|
environment = SubResource("Environment_j6w7d")
|
|
|
|
[node name="OmniLight3D" type="OmniLight3D" parent="WorldEnvironment" unique_id=1148298650]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.12511, 3.32978, -2.61364)
|
|
light_color = Color(1, 0.998, 0.94, 1)
|
|
shadow_caster_mask = 4294967282
|
|
omni_range = 70.081
|
|
|
|
[node name="OmniLight3D2" type="OmniLight3D" parent="WorldEnvironment" unique_id=1374689601]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.12511, 3.32978, 5.93464)
|
|
light_color = Color(1, 0.998, 0.94, 1)
|
|
shadow_caster_mask = 4294967282
|
|
omni_range = 70.081
|
|
|
|
[node name="OmniLight3D5" type="OmniLight3D" parent="WorldEnvironment" unique_id=801305872]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.743763, 3.32978, -10.099689)
|
|
light_color = Color(1, 0.998, 0.94, 1)
|
|
shadow_caster_mask = 4294967282
|
|
omni_range = 70.081
|
|
|
|
[node name="OmniLight3D8" type="OmniLight3D" parent="WorldEnvironment" unique_id=33228221]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 33.37346, 3.32978, -10.099689)
|
|
light_color = Color(1, 0.998, 0.94, 1)
|
|
shadow_caster_mask = 4294967282
|
|
omni_range = 70.081
|
|
|
|
[node name="OmniLight3D9" type="OmniLight3D" parent="WorldEnvironment" unique_id=312686156]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.743763, 3.32978, -18.507103)
|
|
light_color = Color(1, 0.998, 0.94, 1)
|
|
shadow_caster_mask = 4294967282
|
|
omni_range = 70.081
|
|
|
|
[node name="OmniLight3D10" type="OmniLight3D" parent="WorldEnvironment" unique_id=318986507]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 33.37346, 3.32978, -18.507103)
|
|
light_color = Color(1, 0.998, 0.94, 1)
|
|
shadow_caster_mask = 4294967282
|
|
omni_range = 70.081
|
|
|
|
[node name="OmniLight3D3" type="OmniLight3D" parent="WorldEnvironment" unique_id=627317721]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.12511, 3.34108, -20.8442)
|
|
light_color = Color(1, 0.998, 0.94, 1)
|
|
shadow_caster_mask = 4294967282
|
|
omni_range = 70.081
|
|
|
|
[node name="OmniLight3D6" type="OmniLight3D" parent="WorldEnvironment" unique_id=1922582042]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.12511, 3.34108, -15.983203)
|
|
light_color = Color(1, 0.998, 0.94, 1)
|
|
shadow_caster_mask = 4294967282
|
|
omni_range = 70.081
|
|
|
|
[node name="OmniLight3D7" type="OmniLight3D" parent="WorldEnvironment" unique_id=287168023]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.12511, 3.34108, 1.2486136)
|
|
light_color = Color(1, 0.998, 0.94, 1)
|
|
shadow_caster_mask = 4294967282
|
|
omni_range = 70.081
|
|
|
|
[node name="OmniLight3D4" type="OmniLight3D" parent="WorldEnvironment" unique_id=286112640]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.12511, 3.32978, -8.336358)
|
|
light_color = Color(1, 0.998, 0.94, 1)
|
|
shadow_caster_mask = 4294967282
|
|
omni_range = 70.081
|
|
|
|
[node name="Environment" type="StaticBody3D" parent="." unique_id=773425994]
|
|
collision_layer = 5
|
|
collision_mask = 5
|
|
|
|
[node name="CSGCombiner3D" type="CSGCombiner3D" parent="Environment" unique_id=1309595382]
|
|
layers = 3
|
|
use_collision = true
|
|
collision_layer = 5
|
|
collision_mask = 5
|
|
|
|
[node name="CSGBox3D7" type="CSGBox3D" parent="Environment/CSGCombiner3D" unique_id=1810177399]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 2.0833905, 1.78183, -6.984256)
|
|
flip_faces = true
|
|
size = Vector3(30.20909, 3.9247, 12.0219)
|
|
|
|
[node name="CSGBox3D8" type="CSGBox3D" parent="Environment/CSGCombiner3D" unique_id=1959055367]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 11.967607, 1.78183, -6.984256)
|
|
flip_faces = true
|
|
size = Vector3(30.20909, 3.9247, 4.5442)
|
|
|
|
[node name="CSGBox3D5" type="CSGBox3D" parent="Environment/CSGCombiner3D" unique_id=709562439]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -5.321121, 1.78183, -17.623537)
|
|
flip_faces = true
|
|
size = Vector3(3.33952, 3.9247, 6.825535)
|
|
|
|
[node name="CSGBox3D9" type="CSGBox3D" parent="Environment/CSGCombiner3D" unique_id=75998069]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 9.292097, 1.78183, 0.5277357)
|
|
flip_faces = true
|
|
size = Vector3(3.33952, 3.9247, 6.825535)
|
|
|
|
[node name="Plant" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=1330234091 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.0214876, -1.7736205, -6.980213)
|
|
|
|
[node name="Plant9" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=1133988443 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.6052303, -1.7736205, -6.980213)
|
|
|
|
[node name="Plant10" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=1086470850 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14.192992, -1.7736205, -5.802209)
|
|
|
|
[node name="Plant11" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=1116648328 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22.531952, -1.7736202, -17.129332)
|
|
|
|
[node name="Plant12" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=1318839849 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(-0.14198975, 0, 0.9898681, 0, 1, 0, -0.9898681, 0, -0.14198975, 22.567924, -1.7736202, -23.542053)
|
|
|
|
[node name="Plant2" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=2056490412 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.1051676, -1.7736205, 0.9586239)
|
|
|
|
[node name="Plant3" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=1670884635 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.1202295, -1.7736205, 1.037777)
|
|
|
|
[node name="Plant4" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=224982042 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11.146047, -1.7736205, 4.4021616)
|
|
|
|
[node name="Plant6" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=570000140 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 21.46838, -1.7736205, 18.848825)
|
|
|
|
[node name="Plant7" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=184002068 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15.243139, -1.7736205, 18.599718)
|
|
|
|
[node name="Plant8" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=2057902166 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15.245916, -1.7736205, 21.618761)
|
|
|
|
[node name="Plant5" parent="Environment/CSGCombiner3D/CSGBox3D9" unique_id=1838279131 instance=ExtResource("10_fptmo")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 21.81725, -1.7736205, 1.8306074)
|
|
|
|
[node name="CSGBox3D13" type="CSGBox3D" parent="Environment/CSGCombiner3D" unique_id=954227241]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 15.597088, 1.78183, -16.93473)
|
|
flip_faces = true
|
|
size = Vector3(3.33952, 3.9247, 6.825535)
|
|
|
|
[node name="CSGBox3D11" type="CSGBox3D" parent="Environment/CSGCombiner3D" unique_id=1848476931]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -12.431338, 1.78183, -19.250418)
|
|
flip_faces = true
|
|
size = Vector3(6.593282, 3.9247, 10.270983)
|
|
|
|
[node name="CSGBox3D10" type="CSGBox3D" parent="Environment/CSGCombiner3D" unique_id=259002412]
|
|
transform = Transform3D(-1, 0, -8.742279e-08, 0, 1, 0, 8.742279e-08, 0, -1, 26.455765, 1.78183, -14.509243)
|
|
flip_faces = true
|
|
size = Vector3(20.157207, 3.9247, 14.189308)
|
|
|
|
[node name="CSGBox3D12" type="CSGBox3D" parent="Environment/CSGCombiner3D" unique_id=1443450172]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.4652538, 1.8695965, -3.1749)
|
|
operation = 1
|
|
flip_faces = true
|
|
size = Vector3(83.12305, 3.722519, 69.768555)
|
|
material = ExtResource("11_qs1vn")
|
|
|
|
[node name="CSGBox3D14" type="CSGBox3D" parent="Environment/CSGCombiner3D" unique_id=376616522]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 36.740196, 1.3629282, -14.513989)
|
|
flip_faces = true
|
|
size = Vector3(2.334961, 2.7027936, 0.79667497)
|
|
material = ExtResource("7_dw7u0")
|
|
|
|
[node name="CSGBox3D15" type="CSGBox3D" parent="Environment/CSGCombiner3D" unique_id=2117528589]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 38.143517, -44.33511, -14.513989)
|
|
flip_faces = true
|
|
size = Vector3(2.334961, 96.31531, 2.2850885)
|
|
material = ExtResource("7_dw7u0")
|
|
|
|
[node name="CSGBox3D6" type="CSGBox3D" parent="Environment/CSGCombiner3D" unique_id=1678792100]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -12.5180235, 1.2883607, -23.691444)
|
|
flip_faces = true
|
|
size = Vector3(2.365316, 2.560913, 2.3857422)
|
|
material = ExtResource("7_dw7u0")
|
|
|
|
[node name="CSGCylinder3D" type="CSGCylinder3D" parent="Environment" unique_id=373013645]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.12889, 1.85767, -1.56893)
|
|
layers = 5
|
|
use_collision = true
|
|
collision_layer = 12
|
|
collision_mask = 4
|
|
height = 4.05518
|
|
sides = 16
|
|
|
|
[node name="CSGCylinder3D2" type="CSGCylinder3D" parent="Environment" unique_id=1343915546]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.12889, 1.85767, 4.17752)
|
|
layers = 5
|
|
use_collision = true
|
|
collision_layer = 12
|
|
collision_mask = 4
|
|
height = 4.05518
|
|
sides = 16
|
|
|
|
[node name="CSGCylinder3D5" type="CSGCylinder3D" parent="Environment" unique_id=30481300]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 32.00884, 1.85767, -14.630466)
|
|
layers = 5
|
|
use_collision = true
|
|
collision_layer = 12
|
|
collision_mask = 4
|
|
height = 4.05518
|
|
sides = 16
|
|
|
|
[node name="CSGCylinder3D8" type="CSGCylinder3D" parent="Environment" unique_id=933217704]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26.804934, 1.85767, -14.630466)
|
|
layers = 5
|
|
use_collision = true
|
|
collision_layer = 12
|
|
collision_mask = 4
|
|
height = 4.05518
|
|
sides = 16
|
|
|
|
[node name="CSGCylinder3D9" type="CSGCylinder3D" parent="Environment" unique_id=184961953]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 19.216652, 1.85767, -14.630466)
|
|
layers = 5
|
|
use_collision = true
|
|
collision_layer = 12
|
|
collision_mask = 4
|
|
height = 4.05518
|
|
sides = 16
|
|
|
|
[node name="CSGCylinder3D3" type="CSGCylinder3D" parent="Environment" unique_id=1100270404]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.5257, 1.85767, -18.7176)
|
|
layers = 5
|
|
use_collision = true
|
|
collision_layer = 12
|
|
collision_mask = 4
|
|
height = 4.05518
|
|
sides = 16
|
|
|
|
[node name="CSGCylinder3D4" type="CSGCylinder3D" parent="Environment" unique_id=232878037]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.5257, 1.85767, -13.6488)
|
|
layers = 5
|
|
use_collision = true
|
|
collision_layer = 12
|
|
collision_mask = 4
|
|
height = 4.05518
|
|
sides = 16
|
|
|
|
[node name="Table" parent="." unique_id=2017541824 instance=ExtResource("2_paw1w")]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 5.03561, 0.0109616, 4.698117)
|
|
|
|
[node name="Cubicle" parent="." unique_id=1438599276 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.71818, 0, 0.437047)
|
|
|
|
[node name="Cubicle2" parent="." unique_id=1823921976 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -2.9287, 0, 2.4723)
|
|
|
|
[node name="Cubicle3" parent="." unique_id=42526446 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.71818, 0, 4.79514)
|
|
|
|
[node name="Cubicle5" parent="." unique_id=1610148512 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -2.92352, 0, -1.85032)
|
|
|
|
[node name="Cubicle6" parent="." unique_id=1044194648 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.68549, 0, -3.83506)
|
|
|
|
[node name="Cubicle4" parent="." unique_id=1661573985 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -2.9274, 0, 6.77145)
|
|
|
|
[node name="Cubicle7" parent="." unique_id=1097678499 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1, 0, -2.13163e-14, 0, 1, 0, 2.13163e-14, 0, 1, 0.755957, 4.76837e-07, -3.91476)
|
|
|
|
[node name="Cubicle10" parent="." unique_id=1082180578 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 0.621231, 0, -1.52822)
|
|
|
|
[node name="Cubicle13" parent="." unique_id=1999319682 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 0.425461, 0, 0.507784)
|
|
|
|
[node name="Cubicle14" parent="." unique_id=1533688938 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 0.667755, 0, 2.78505)
|
|
|
|
[node name="Cubicle18" parent="." unique_id=376388164 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 1.28432, 4.76837e-07, -10.1624)
|
|
|
|
[node name="Cubicle20" parent="." unique_id=59425566 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1, 0, 8.74224e-08, 0, 1, 0, -8.74224e-08, 0, -1, 0.7673764, 4.76837e-07, -14.4966)
|
|
|
|
[node name="Cubicle22" parent="." unique_id=2138358909 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 1.0063124, 4.76837e-07, -16.47)
|
|
|
|
[node name="Cubicle25" parent="." unique_id=1879326602 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 3.0555744, 4.76837e-07, -15.8363)
|
|
|
|
[node name="Cubicle29" parent="." unique_id=1829738060 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 6.83872, 4.76837e-07, -11.361149)
|
|
|
|
[node name="Cubicle68" parent="." unique_id=8259160 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 6.83872, 4.76837e-07, -9.198353)
|
|
|
|
[node name="Cubicle69" parent="." unique_id=930199347 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(8.940697e-08, 0, -1, 0, 1, 0, 1, 0, 8.940697e-08, 7.0271683, 4.76837e-07, -6.894919)
|
|
|
|
[node name="Cubicle30" parent="." unique_id=2091108548 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1.31134e-07, 0, -1, 0, 1, 0, 1, 0, 1.31134e-07, 7.07911, 4.76837e-07, -13.386949)
|
|
|
|
[node name="Cubicle31" parent="." unique_id=1529096124 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 6.83872, 4.76837e-07, -15.642948)
|
|
|
|
[node name="Cubicle32" parent="." unique_id=1796321907 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1.31134e-07, 0, -1, 0, 1, 0, 1, 0, 1.31134e-07, 7.04736, 4.76837e-07, -17.620548)
|
|
|
|
[node name="Cubicle33" parent="." unique_id=360545644 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1.31134e-07, 0, -1, 0, 1, 0, 1, 0, 1.31134e-07, 7.0473595, 4.76837e-07, -19.82956)
|
|
|
|
[node name="Cubicle34" parent="." unique_id=1728192928 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1, 0, 1.74846e-07, 0, 1, 0, -1.74846e-07, 0, 1, -2.57927, 4.76837e-07, -20.8332)
|
|
|
|
[node name="Cubicle37" parent="." unique_id=1099251391 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-2.18557e-07, 0, 1, 0, 1, 0, -1, 0, -2.18557e-07, -2.78791, 4.76837e-07, -14.5923)
|
|
|
|
[node name="Cubicle38" parent="." unique_id=1968522130 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1, 0, 1.63425e-13, 0, 1, 0, -1.63425e-13, 0, 1, -2.52796, 4.76837e-07, -12.3504)
|
|
|
|
[node name="Cubicle27" parent="." unique_id=1055831276 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 0.97023845, 4.76837e-07, -20.7132)
|
|
|
|
[node name="Cubicle28" parent="." unique_id=938370698 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 3.0181644, 4.76837e-07, -21.1051)
|
|
|
|
[node name="Cubicle26" parent="." unique_id=1278769327 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1, 0, 2.98023e-08, 0, 1, 0, -2.98023e-08, 0, -1, 0.72454745, 4.76837e-07, -18.7295)
|
|
|
|
[node name="Cubicle19" parent="." unique_id=145193046 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, -0.805798, 4.76837e-07, -10.1624)
|
|
|
|
[node name="Cubicle23" parent="." unique_id=194020935 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, -2.80155, 4.76837e-07, -10.3997)
|
|
|
|
[node name="Cubicle35" parent="." unique_id=872560575 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1, 0, -2.1316282e-14, 0, 1, 0, 2.1316282e-14, 0, 1, -2.5762727, 4.76837e-07, -8.047709)
|
|
|
|
[node name="Cubicle36" parent="." unique_id=971256329 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1, 0, -2.1316282e-14, 0, 1, 0, 2.1316282e-14, 0, 1, -0.48615474, 4.76837e-07, -8.047709)
|
|
|
|
[node name="Cubicle41" parent="." unique_id=515533318 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-4.3711225e-08, 0, -1, 0, 1, 0, 1, 0, -4.3711225e-08, 1.5095973, 4.76837e-07, -7.8104086)
|
|
|
|
[node name="Cubicle17" parent="." unique_id=2054870440 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 0.425461, 0, 4.76066)
|
|
|
|
[node name="Cubicle15" parent="." unique_id=749664187 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1, 0, -7.6490224e-08, 0, 1, 0, 7.6490224e-08, 0, 1, 4.897935, 2.38419e-07, -2.75982)
|
|
|
|
[node name="Cubicle70" parent="." unique_id=991993051 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1, 0, 1.63913e-07, 0, 1, 0, -1.63913e-07, 0, -1, 6.73996, 2.38419e-07, -4.8276067)
|
|
|
|
[node name="Cubicle21" parent="." unique_id=2082840415 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1.0000001, 0, -2.682209e-07, 0, 1, 0, 2.682209e-07, 0, 1.0000001, 22.449741, 0, -20.527685)
|
|
|
|
[node name="Cubicle48" parent="." unique_id=1745628411 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-2.682209e-07, 0, -1.0000001, 0, 1, 0, 1.0000001, 0, -2.682209e-07, 35.157543, 0, -20.241217)
|
|
|
|
[node name="Cubicle24" parent="." unique_id=1244983634 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-3.119323e-07, 0, -1.0000001, 0, 1, 0, 1.0000001, 0, -3.119323e-07, 24.457603, 0, -20.31484)
|
|
|
|
[node name="Cubicle39" parent="." unique_id=2123295175 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1.0000001, 0, -2.682209e-07, 0, 1, 0, 2.682209e-07, 0, 1.0000001, 26.70301, 0, -20.50506)
|
|
|
|
[node name="Cubicle43" parent="." unique_id=1273061314 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(2.245095e-07, 0, 1.0000001, 0, 1, 0, -1.0000001, 0, 2.245095e-07, 22.191187, 0, -8.741015)
|
|
|
|
[node name="Cubicle50" parent="." unique_id=578833722 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(2.245095e-07, 0, 1.0000001, 0, 1, 0, -1.0000001, 0, 2.245095e-07, 17.595041, 0, -8.741015)
|
|
|
|
[node name="Cubicle54" parent="." unique_id=584781213 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1.0000001, 0, -2.682209e-07, 0, 1, 0, 2.682209e-07, 0, 1.0000001, 20.33734, 0, -20.40535)
|
|
|
|
[node name="Cubicle44" parent="." unique_id=1113117618 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1.0000001, 0, 1.8079811e-07, 0, 1, 0, -1.8079811e-07, 0, -1.0000001, 31.485723, 0, -16.76205)
|
|
|
|
[node name="Cubicle45" parent="." unique_id=1451299291 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(2.2450953e-07, 0, 1.0000001, 0, 1, 0, -1.0000001, 0, 2.2450953e-07, 27.190495, 0, -17.019032)
|
|
|
|
[node name="Cubicle46" parent="." unique_id=1446175821 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1.0000001, 0, 1.8079814e-07, 0, 1, 0, -1.8079814e-07, 0, -1.0000001, 24.887117, 0, -16.752254)
|
|
|
|
[node name="Cubicle55" parent="." unique_id=890614315 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(2.2450953e-07, 0, 1.0000001, 0, 1, 0, -1.0000001, 0, 2.2450953e-07, 22.94222, 0, -17.019032)
|
|
|
|
[node name="Cubicle67" parent="." unique_id=1779319628 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1.0000001, 0, 1.8079814e-07, 0, 1, 0, -1.8079814e-07, 0, -1.0000001, 20.65705, 0, -16.777699)
|
|
|
|
[node name="Cubicle47" parent="." unique_id=1989069331 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(2.2450953e-07, 0, 1.0000001, 0, 1, 0, -1.0000001, 0, 2.2450953e-07, 33.72468, 0, -17.019032)
|
|
|
|
[node name="Cubicle49" parent="." unique_id=1327643706 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(2.2450953e-07, 0, 1.0000001, 0, 1, 0, -1.0000001, 0, 2.2450953e-07, 33.72468, 0, -14.807696)
|
|
|
|
[node name="Cubicle51" parent="." unique_id=732020651 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-4.172325e-07, 0, -1, 0, 1, 0, 1, 0, -4.172325e-07, 27.274893, 0, -12.330565)
|
|
|
|
[node name="Cubicle61" parent="." unique_id=1671592336 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-4.172325e-07, 0, -1, 0, 1, 0, 1, 0, -4.172325e-07, 25.09364, 0, -12.330565)
|
|
|
|
[node name="Cubicle63" parent="." unique_id=1502869546 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-4.172325e-07, 0, -1, 0, 1, 0, 1, 0, -4.172325e-07, 22.830069, 0, -12.365128)
|
|
|
|
[node name="Cubicle65" parent="." unique_id=1556894287 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1, 0, -3.7352112e-07, 0, 1, 0, 3.7352112e-07, 0, 1, 20.952341, 0, -12.699475)
|
|
|
|
[node name="Cubicle66" parent="." unique_id=629979762 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1, 0, -3.7352112e-07, 0, 1, 0, 3.7352112e-07, 0, 1, 18.823792, 0, -12.695832)
|
|
|
|
[node name="Cubicle52" parent="." unique_id=1454810236 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1.0000001, 0, -2.682209e-07, 0, 1, 0, 2.682209e-07, 0, 1.0000001, 31.813255, 0, -12.554294)
|
|
|
|
[node name="Cubicle53" parent="." unique_id=256932223 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-3.1193235e-07, 0, -1.0000001, 0, 1, 0, 1.0000001, 0, -3.1193235e-07, 33.82112, 0, -12.297311)
|
|
|
|
[node name="Cubicle42" parent="." unique_id=210955448 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-3.119323e-07, 0, -1.0000001, 0, 1, 0, 1.0000001, 0, -3.119323e-07, 33.00595, 0, -20.265879)
|
|
|
|
[node name="Cubicle56" parent="." unique_id=1553650121 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1.0000001, 0, 3.556437e-07, 0, 1, 0, -3.556437e-07, 0, -1.0000001, 28.423044, -9.536743e-07, -8.592465)
|
|
|
|
[node name="Cubicle57" parent="." unique_id=1833376837 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1.0000001, 0, 3.556437e-07, 0, 1, 0, -3.556437e-07, 0, -1.0000001, 32.793274, -7.1525574e-07, -8.670258)
|
|
|
|
[node name="Cubicle62" parent="." unique_id=393168654 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1.0000001, 0, 3.556437e-07, 0, 1, 0, -3.556437e-07, 0, -1.0000001, 34.900593, -7.1525574e-07, -8.670258)
|
|
|
|
[node name="Cubicle58" parent="." unique_id=1333097615 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(3.9935512e-07, 0, 1.0000001, 0, 1, 0, -1.0000001, 0, 3.9935512e-07, 30.8175, -7.1525574e-07, -8.858877)
|
|
|
|
[node name="Cubicle59" parent="." unique_id=1883899517 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(3.9935512e-07, 0, 1.0000001, 0, 1, 0, -1.0000001, 0, 3.9935512e-07, 26.421013, -9.536743e-07, -8.815153)
|
|
|
|
[node name="Cubicle60" parent="." unique_id=1739582228 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1.0000001, 0, 3.556437e-07, 0, 1, 0, -3.556437e-07, 0, -1.0000001, 24.172894, -9.536743e-07, -8.577284)
|
|
|
|
[node name="Cubicle40" parent="." unique_id=524582439 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(1.0000001, 0, -2.682209e-07, 0, 1, 0, 2.682209e-07, 0, 1.0000001, 18.008053, 0, -20.527685)
|
|
|
|
[node name="Cubicle64" parent="." unique_id=553366793 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1.0000001, 0, 3.556437e-07, 0, 1, 0, -3.556437e-07, 0, -1.0000001, 19.731205, -9.536743e-07, -8.577284)
|
|
|
|
[node name="Cubicle16" parent="." unique_id=629212937 instance=ExtResource("6_qcd3b")]
|
|
transform = Transform3D(-1.2020122e-07, 0, -1, 0, 1, 0, 1, 0, -1.2020122e-07, 6.8939652, 2.38419e-07, -2.5004)
|
|
|
|
[connection signal="body_entered" from="FixedCameraArea" to="FixedCameraArea" method="_on_body_entered"]
|
|
[connection signal="body_exited" from="FixedCameraArea" to="FixedCameraArea" method="_on_body_exited"]
|