17 lines
379 B
GDScript
17 lines
379 B
GDScript
extends Area2D
|
|
|
|
const right = Vector2.RIGHT
|
|
var speed : int = 0
|
|
var damage : int = 0
|
|
|
|
func _physics_process(delta):
|
|
var movement = right.rotated(rotation) * speed * delta
|
|
global_position += movement
|
|
|
|
func _on_VisibilityNotifier2D_screen_exited():
|
|
queue_free()
|
|
|
|
func _on_Bullet_body_entered(body):
|
|
if body.is_in_group("Enemy"):
|
|
body.get_parent().hit(damage)
|
|
queue_free()
|