summaryrefslogtreecommitdiff
path: root/demos/2d/space_shooter/shot.gd
blob: 813587d6705ad2d5ce939cda6f02cfeca90ab45a (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

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)
	pass

var hit=false

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

func _on_visibility_exit_screen():
	queue_free()
	pass # replace with function body



func _on_shot_area_enter( area ):
	#hit an enemy or asteroid
	if (area.has_method("destroy")):
		#duck typing at it's best
		area.destroy()
		_hit_something()
	
	
	pass 


func _on_shot_body_enter( body ):
	#hit the tilemap
	_hit_something()
	pass # replace with function body