Player.gd 968 B

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