Closed
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.