diff --git a/GenScene.py b/GenScene.py index 4b899f2..cba697c 100644 --- a/GenScene.py +++ b/GenScene.py @@ -4,6 +4,10 @@ from manim import * from math import * +# Force the output to be the scene name to guarantee uniqueness: https://github.com/360macky/generative-manim/issues/23 +SceneFileWriter.force_output_as_scene_name = True + class GenScene(Scene): def construct(self): - pass + c = Circle(color=BLUE) + self.play(Create(c))