You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently made an animation that involved Transforming text objects repeatedly, during which the logging displays the original text of the objects and not their current state. This makes debugging problems slightly more work, as it can be more difficult to differentiate at what part of the scene something went wrong.
Is there a reason for the current behavior? And is there interest in changing it to display updated information? I imagine self.original_text may be changed to self.text and maybe the Transform can update tex_string itself.
The text was updated successfully, but these errors were encountered:
Currently,
Text
objects havemanim/manim/mobject/text/text_mobject.py
Lines 591 to 592 in 2462d0d
and similarly for
SingleStringMathTex
manim/manim/mobject/text/tex_mobject.py
Lines 108 to 109 in 2462d0d
I recently made an animation that involved
Transform
ing text objects repeatedly, during which the logging displays the original text of the objects and not their current state. This makes debugging problems slightly more work, as it can be more difficult to differentiate at what part of the scene something went wrong.Is there a reason for the current behavior? And is there interest in changing it to display updated information? I imagine
self.original_text
may be changed toself.text
and maybe theTransform
can updatetex_string
itself.The text was updated successfully, but these errors were encountered: