Rectangle(color="green")
circle = Circle(width=5, height=5, color="white")
grow = 10
with animation(duration=2):
    circle.width = grow
    circle.height = grow
    circle.color = "white"
circle1 = Circle(width=65, height=65, color="white")
grow1 = 20
with animation(duration=2):
    circle1.width = grow1
    circle1.height = grow1
    circle1.color = "red"

testing variable

by khedkar

Created 3 years, 11 months ago.