-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTest.tscn
42 lines (27 loc) · 1.29 KB
/
Test.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[gd_scene load_steps=7 format=2]
[ext_resource path="res://Test.gd" type="Script" id=1]
[sub_resource type="ProceduralSky" id=1]
[sub_resource type="Environment" id=2]
background_mode = 2
background_sky = SubResource( 1 )
[sub_resource type="BoxShape" id=3]
[sub_resource type="CubeMesh" id=4]
[sub_resource type="BoxShape" id=5]
[node name="Test" type="Spatial"]
script = ExtResource( 1 )
[node name="Camera" type="Camera" parent="."]
environment = SubResource( 2 )
[node name="DirectionalLight" type="DirectionalLight" parent="."]
transform = Transform( 1, 0, 0, 0, 0.809191, 0.587545, 0, -0.587545, 0.809191, 0, 1.47582, 0 )
[node name="StaticBody" type="StaticBody" parent="."]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -1.44832, 0, -5.29961 )
[node name="CollisionShape" type="CollisionShape" parent="StaticBody"]
shape = SubResource( 3 )
[node name="MeshInstance" type="MeshInstance" parent="StaticBody"]
mesh = SubResource( 4 )
[node name="Area" type="Area" parent="."]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, -5 )
[node name="CollisionShape" type="CollisionShape" parent="Area"]
shape = SubResource( 5 )
[connection signal="body_entered" from="Area" to="." method="_on_Area_body_entered"]
[connection signal="body_exited" from="Area" to="." method="_on_Area_body_exited"]