Are you sure?
Do you want to delete “Sunset” permanently? You will not be able to undo this action.
from icons import Cloud
Background=Rectangle(color='lightblue')
MySun=Circle(color='yellow',width=60,height=60,x=100,y=-1)
MyCloud1=Cloud(color='white',width=30,height=20,x=120,y=40)
MyCloud2=Cloud(color='white',width=30,height=20,x=-100,y=30)
with animation(duration=7):
MyCloud1.x=-100
MyCloud2.x=126
with animation(duration=10):
MySun.x=-15
MySun.y=150
Background.color=('blue','orange')
MySun.color=('yellow','orange')
with animation(duration=2):
Background.color='lightyellow'
MyText=Text("END",transparency=0,color=('blue','black'))
with animation(duration=2):
MyText.transparency=100