Are you sure?
Do you want to delete “halloween_spider” permanently? You will not be able to undo this action.
import icons
background = Rectangle(color="orange")
background = Text("Halloween")
spider = icons.Spider(color="black", width=15, height=15)
grow = 35
with animation(duration=2):
spider.x = 90
spider.color = 'grey'
with animation(duration=0.5):
pass
with animation(duration=1):
spider.y = 90
spider.color = 'black'
spider.width = grow
spider.height = grow