(self)
| 253 | |
| 254 | class SceneWithTwoAnimations(Scene): |
| 255 | def construct(self): |
| 256 | self.after_first_animation = False |
| 257 | s = Square() |
| 258 | self.add(s) |
| 259 | self.play(s.animate.scale(2)) |
| 260 | self.renderer.update_skipping_status() |
| 261 | self.after_first_animation = True |
| 262 | self.play(s.animate.scale(2)) |
| 263 | |
| 264 | scene = SceneWithTwoAnimations() |
| 265 | scene.render() |
nothing calls this directly
no test coverage detected