bgnd = Square()
ball1 = Circle(color = "pink", width=30, height=30, x=35, y=80)
ball2 = Circle(color = "pink", width=30, height=30, x=65, y=80)
exit = Circle(color="black", width=5, height=10, x=58, y=10)
shft = Circle(color= "pink", width=20, height=80, rotation=10)

with animation(duration = 2):
    shft.rotation = -10
with animation(duration = 2):
    shft.rotation = 10
with animation(duration = 0.1):
    exit.color="white"
    
loopList = range(1, 10)
for loopVariable in loopList:
    with animation(duration = 0.05):
        exit.x = 70
        exit.y = -10
    shft.width=20+((loopVariable) % 3)
    exit.x = 58
    exit.y = 10
with animation(duration = 0.2):
    pass

A beauty

by 8jy89hui

Created 5 years, 8 months ago.