MyRectangle=Rectangle(color=('lightblue','brown'), width=200, height=200)

from icons import Cloud
MyCloud=Cloud(color='white', width=25, height=19, x=20, y=20)
MyCloud2=Cloud(color='white', width=25, height=19, x=30, y=15)
MyCloud3=Cloud(color='white', width=25, height=19, x=57, y=22)

MySun=Circle(color=('orange','yellow'),y=140)

with animation(duration=15):
    MyCloud.x=150
    MyCloud2.x=150
    MyCloud3.x=150
    MyCloud.color='grey'
    MyCloud2.color='grey'
    MyCloud3.color='grey'
    MyRectangle.color='lightblue'
    MySun.y=50
    MySun.color='yellow'
    MySun.width=80
    MySun.height=80
    
with animation(duration=2):
        MyRectangle.color=('lightyellow','lightblue')
        MySun.color='lightyellow'

Sunrise

by lamine

Created 4 years, 3 months ago.