123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- extends Area2D
- signal hit
- export var speed = 400 # pixel / sec
- var screen
- func spawn(atPos):
- position = atPos
- show()
- $CollisionShape2D.disabled = false
- func die():
- hide()
- func _ready():
- hide()
- screen = get_viewport_rect()
- func _process(delta):
- var velocity = Vector2()
- if Input.is_action_pressed("ui_right"):
- velocity.x += 1
- if Input.is_action_pressed("ui_left"):
- velocity.x -= 1
- if Input.is_action_pressed("ui_down"):
- velocity.y += 1
- if Input.is_action_pressed("ui_up"):
- velocity.y -= 1
-
- if velocity.length() > 0:
- velocity = velocity.normalized() * speed
- $AnimatedSprite.play()
- else:
- $AnimatedSprite.stop()
-
- position += velocity * delta
-
- position.x = clamp(position.x, 0, screen.size.x)
- position.y = clamp(position.y, 0, screen.size.y)
-
- if velocity.x != 0:
- $AnimatedSprite.animation = "right"
- $AnimatedSprite.flip_v = false
- $AnimatedSprite.flip_h = velocity.x < 0
- 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)
|