blob: 8b93b24e1fb94fea34c7dbde2fcc583d9990661b (
plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
extends RigidBody2D
@export var killer : bool
@export var posessed : bool
@export var persistent_linear_velocity : Vector2
@export var particle_chad : PackedScene
@export var particle_virgin : PackedScene
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass
#look_at(get_tree().get_root().get_node("Prototype/Player").position)
func _physics_process(delta):
#global_position += linear_velocity
if persistent_linear_velocity != Vector2.ZERO:
linear_velocity = persistent_linear_velocity
pass
func _on_area_entered(area):
if killer:
area.queue_free()
func start_timebomb():
$"LifeTimer".start()
func _on_life_timer_timeout():
queue_free()
func _on_body_entered(body):
print(body.name)
if killer:
if body.name != "Player":
print("kill")
body.destroy(true)
else:
if !("killer" in body):
if posessed:
if body.name != "Player":
body.destroy()
else:
body.destroy()
elif body.killer:
return
else:
body.destroy()
#func _on_area_2d_area_entered(area):
# pass # Replace with function body.
#func _on_area_2d_body_entered(body):
# if killer:
# body.queue_free()
func destroy(player_killed = false):
var part
if player_killed:
part = particle_chad
else:
part = particle_virgin
var new = part.instantiate()
new.position = global_position
new.emitting = true
get_tree().get_root().get_node("Prototype").add_child(new)
queue_free()
|