A game created for the Godot Wild Jam #21
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

48 lines
1007B

  1. extends KinematicBody2D
  2. export var degrees_per_second:float = 180.0
  3. export var ease_in:float = 0.2
  4. export var ease_out:float = 0.4
  5. export var active:bool = true setget _set_active
  6. var _easing_in = false
  7. var _easing_out = false
  8. var _easing = 0.0
  9. var _running = false
  10. func _set_active(b):
  11. if active != b:
  12. if active:
  13. _easing_out = true
  14. _easing = ease_out
  15. else:
  16. _easing_in = true
  17. _easing = ease_in
  18. active = b
  19. # Called when the node enters the scene tree for the first time.
  20. func _ready():
  21. set_physics_process(true)
  22. if active and _easing == 0.0:
  23. _running = true
  24. func _physics_process(delta):
  25. if _easing_in or _easing_out:
  26. _easing -= delta
  27. if _easing <= 0.0:
  28. _running = _easing_in
  29. _easing_in = false
  30. _easing_out = false
  31. _easing = 0.0
  32. else:
  33. var adj
  34. if _easing_in:
  35. adj = 1.0 - (_easing / ease_in)
  36. else:
  37. adj = 1.0 - (_easing / ease_out)
  38. rotate(deg2rad(degrees_per_second * adj * delta))
  39. if _running:
  40. rotate(deg2rad(degrees_per_second * delta))