Are you sure?
Do you want to delete “boo_spider” permanently? You will not be able to undo this action.
import icons background = Rectangle(color="sandybrown") background = Text("BOO!") spider = icons.Spider(color="black", width=40, height=40) shrink = 15 with animation(duration=1): spider.x = 90 spider.color = 'red' with animation(duration=0.5): pass with animation(duration=1): spider.y = 90 spider.color = 'black' spider.width = shrink spider.height = shrink spider.x = -90