import icons
Square(color=['skyblue', 'lightsalmon', 'black'])
dove = icons.Dove(width=15, height = 15, x=10, y=10, color="white")
tree = icons.Tree(width=25, height = 50, x=60, y=75, color=['lawngreen', 'green'])
tree = icons.Tree(width=30, height = 50, x=40, y=75, color="green")
tree = icons.Tree(width=25, height = 50, x=20, y=75, color=['lawngreen','green'])
tree = icons.Tree(width=30, height = 50, x=80, y=75, color="green")


crshr = icons.Crosshairs(width=20, height=20, x= 0, transparency = 100)

with animation(duration=2):
    dove.x=50
    dove.y=50
    
crshr.transparency=0
with animation(duration=3):
    crshr.x=50
    crshr.y=50
    
bang = Square(color="white")
with animation(duration=0.2):
	pass
bang.transparency=100
with animation(duration=1):
	dove.color = "red"
	dove.y = 100
    
crshr.transparency=100

dove.transparency=100


with animation(duration=2):
    pass

Animation

by lilmissgiggles

Created 5 years, 7 months ago.