-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Closed
Labels
issue:bugSomething isn't working... For use in issuesSomething isn't working... For use in issues
Milestone
Description
Consider the following scene:
class Test(Scene):
def construct(self):
a = Square(color = RED)
b = Square(color = BLUE)
b.shift(RIGHT)
self.add(a)
self.wait()
self.bring_to_back(b)
self.play(FadeIn(b))
self.wait()In 0.14, this is the output:
Test.mp4
In 0.15, this is the output:
Test.mp4
As you can see, the blue square is correctly drawn behind the red one in 0.14, but in 0.15, the blue square is drawn on top.
Metadata
Metadata
Assignees
Labels
issue:bugSomething isn't working... For use in issuesSomething isn't working... For use in issues