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
|
[gd_scene load_steps=5 format=3 uid="uid://cuad3khwmhnsa"]
[ext_resource type="Script" path="res://scripts/enemy.gd" id="1_aut2k"]
[ext_resource type="PackedScene" uid="uid://dh6ndi4n4fjmi" path="res://models/alien.blend" id="2_kcx85"]
[sub_resource type="CylinderShape3D" id="CylinderShape3D_1yvgl"]
height = 1.59164
radius = 0.707682
[sub_resource type="BoxShape3D" id="BoxShape3D_cyd43"]
size = Vector3(20, 2, 20)
[node name="Enemy" type="CharacterBody3D"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.54414, -1.58742)
motion_mode = 1
wall_min_slide_angle = 0.0872665
script = ExtResource("1_aut2k")
[node name="alien" parent="." instance=ExtResource("2_kcx85")]
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0445195, 0.797944, 0.0425379)
shape = SubResource("CylinderShape3D_1yvgl")
[node name="HitTimer" type="Timer" parent="."]
wait_time = 0.2
[node name="NavigationAgent3D" type="NavigationAgent3D" parent="."]
[node name="VisionVolume" type="Area3D" parent="."]
collision_layer = 4
collision_mask = 4
input_ray_pickable = false
[node name="VisionVolumeShape" type="CollisionShape3D" parent="VisionVolume"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0)
shape = SubResource("BoxShape3D_cyd43")
[connection signal="timeout" from="HitTimer" to="." method="_on_hit_timer_timeout"]
[connection signal="body_entered" from="VisionVolume" to="." method="_on_body_entered"]
[connection signal="body_exited" from="VisionVolume" to="." method="_on_body_exited"]
|