summaryrefslogtreecommitdiff
path: root/demos/2d/space_shooter/enemy_shot.gd
blob: 238d24e4a2ce5afd588761c7ae59de792558668e (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

extends Area2D

# member variables here, example:
# var a=2
# var b="textvar"

const SPEED = -800

func _process(delta):
	translate(Vector2(delta*SPEED,0))

func _ready():
	# Initialization here
	set_process(true)


var hit=false

func is_enemy():
	return true

func _hit_something():
	if (hit):
		return
	hit=true
	set_process(false)
	get_node("anim").play("splash")

func _on_visibility_exit_screen():
	queue_free()