Player.gd 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. extends Area2D
  2. signal hit
  3. export var speed = 400 # pixel / sec
  4. var screen
  5. func spawn(atPos):
  6. position = atPos
  7. show()
  8. $CollisionShape2D.disabled = false
  9. func die():
  10. hide()
  11. func _ready():
  12. hide()
  13. screen = get_viewport_rect()
  14. func _process(delta):
  15. var velocity = Vector2()
  16. if Input.is_action_pressed("ui_right"):
  17. velocity.x += 1
  18. if Input.is_action_pressed("ui_left"):
  19. velocity.x -= 1
  20. if Input.is_action_pressed("ui_down"):
  21. velocity.y += 1
  22. if Input.is_action_pressed("ui_up"):
  23. velocity.y -= 1
  24. if velocity.length() > 0:
  25. velocity = velocity.normalized() * speed
  26. $AnimatedSprite.play()
  27. else:
  28. $AnimatedSprite.stop()
  29. position += velocity * delta
  30. position.x = clamp(position.x, 0, screen.size.x)
  31. position.y = clamp(position.y, 0, screen.size.y)
  32. if velocity.x != 0:
  33. $AnimatedSprite.animation = "right"
  34. $AnimatedSprite.flip_v = false
  35. $AnimatedSprite.flip_h = velocity.x < 0
  36. elif velocity.y != 0:
  37. $AnimatedSprite.animation = "up"
  38. $AnimatedSprite.flip_v = velocity.y > 0
  39. func _on_Player_body_entered(body):
  40. die()
  41. emit_signal("hit")
  42. $CollisionShape2D.set_deferred("disabled", true)