Rectangle(color="pink")
circle = Circle(width=5, height=5, color="white")
grow = 40
with animation(duration=4):
    circle.width = grow
    circle.height = grow
    circle.color = "red"

Variable Example 5

by jamie

Created 4 years, 8 months ago.