Charlie Jiang

Results 2 comments of Charlie Jiang

3 years later, I solved my problem according to the issue you opened, while it is still open

Hi @MightyStud , your code works well! Another method is also available: ```python from manim import * class write_text_dir_rtl(Scene): def construct(self): text = Tex("Hello World") self.play(Write(text, reverse=True, remover=False)) self.wait() ```...