import icons

ball = icons.Futbol(width=30, height=30, x=15)
points = [(50, 85), (85, 50), (50, 15), (15, 50)]

for x, y in points:
    with animation(duration=0.8):
        ball.x = x
        ball.y = y

Bouncy Ball

by ludwik

Created 6 years ago.