mirror of
https://github.com/3b1b/manim.git
synced 2025-09-19 04:41:56 +00:00
Bug fix to change_student_modes
This commit is contained in:
parent
f208149e9c
commit
9b8fdf3d3b
1 changed files with 1 additions and 1 deletions
|
@ -667,7 +667,7 @@ class TeacherStudentsScene(PiCreatureScene):
|
|||
return self.pi_creature_thinks(student, *content, **kwargs)
|
||||
|
||||
def change_all_student_modes(self, mode, **kwargs):
|
||||
self.change_student_modes(*[mode]*len(self.students))
|
||||
self.change_student_modes(*[mode]*len(self.students), **kwargs)
|
||||
|
||||
def change_student_modes(self, *modes, **kwargs):
|
||||
added_anims = kwargs.pop("added_anims", [])
|
||||
|
|
Loading…
Add table
Reference in a new issue