1234567891011121314 |
- extends PathFollow2D
- # a moving music player
- const SPEED = 200
- const RAYON = 20
- const MAIN_COLOR = Color8(252, 0, 20)
- func _physics_process(delta):
- progress += SPEED * delta
- func _draw():
- draw_circle(Vector2.ZERO, RAYON, MAIN_COLOR)
|