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
# Ok
self.play(ShowCreation(rectangles[0]), ShowCreation(rectangles[2]))
# Ok
self.play(*[ShowCreation(rectangles[0]), ShowCreation(rectangles[2])])
# Error: name 'ShowCreation' is not defined
self.play(*[ShowCreation(rectangles[i]) for i in range(2)])
However, in the list comprehension one, the ShowCreation method becomes undefined
And somehow, it only occurs on the Interactive Mode. (manimgl)
Running the whole .py is ok (manimgl main.py DrawCircle)
There was a recent PR to address namespace issues in that interactive mode. Can you confirm whether the issue still comes up with the most recent commit?
Describe the error
The following codes do the same exact thing
However, in the list comprehension one, the ShowCreation method becomes undefined
And somehow, it only occurs on the Interactive Mode. (
manimgl
)Running the whole .py is ok (
manimgl main.py DrawCircle
)Environment
OS System: MacOS Sonoma 14.3
manim version: 1.4.1
python version: 3.10.0
The text was updated successfully, but these errors were encountered: