Are you sure?
Do you want to delete “Flying Saucer” permanently? You will not be able to undo this action.
Rectangle()
from icons import Star
star1 = Star(x=50, y=40, width=5, height=5, color='white')
star2 = Star(x=30, y=20, width=3, height=3, color='white')
star3 = Star(x=20, y=70, width=4, height=4, color='yellow')
star4 = Star(x=80, y=40, width=3, height=3, color='yellow')
star5 = Star(x=65, y=70, width=2, height=2, color='white')
star6 = Star(x=95, y=80, width=2, height=2, color='black')
planet = Circle(x=98, y=5, width=40, height=40, color='red')
midplanet = Circle(x=98, y=5, width=38, height=38, color='orange')
top = Circle(x=-5, y=-1, width=4, height=4, color='white')
base = Circle(x=-5, y=0, width=10, height=2.5, color='gray')
with animation(duration=5):
top.x=140
top.y=140
top.width=15
top.height=15
base.x=140
base.y=143
base.width=40
base.height=10
star1.width=2
star1.height=2
star1.color='black'
star6.color='white'
star5.color='yellow'
star4.color='white'
star3.color='white'
star3.width=8
star3.height=8
star2.color='yellow'