import icons

backgroud = Rectangle(color='skyblue')
face = icons.Flushed(color='white', width=1, height=1, transparency=60)

with animation(duration=4):
    backgroud.color = ['brown', 'red']
    face.width = 90
    face.height = 90
    face.transparency = 100
    face.rotation = 360 * 3

with animation():
    pass  # just wait for a second

with animation(duration=4):
    backgroud.color = 'skyblue'
    
with animation():
    pass

Psychedelic

by ludwik

Created 5 years, 8 months ago.