|
@@ -1,11 +1,17 @@
|
|
|
extends Area2D
|
|
|
|
|
|
+signal hit
|
|
|
+
|
|
|
export var speed = 400 # pixel / sec
|
|
|
var screen
|
|
|
|
|
|
func spawn():
|
|
|
- show()
|
|
|
position = (screen.position + screen.end) / 2
|
|
|
+ show()
|
|
|
+ $CollisionShape2D.disabled = false
|
|
|
+
|
|
|
+func die():
|
|
|
+ hide()
|
|
|
|
|
|
func _ready():
|
|
|
hide()
|
|
@@ -40,3 +46,9 @@ func _process(delta):
|
|
|
elif velocity.y != 0:
|
|
|
$AnimatedSprite.animation = "up"
|
|
|
$AnimatedSprite.flip_v = velocity.y > 0
|
|
|
+
|
|
|
+
|
|
|
+func _on_Player_body_entered(body):
|
|
|
+ die()
|
|
|
+ emit_signal("hit")
|
|
|
+ $CollisionShape2D.set_deferred("disabled", true)
|