Make it okay to call Mobject.update without a change in time

This commit is contained in:
Grant Sanderson
2019-01-16 11:09:42 -08:00
parent e63074a72e
commit 6652dc6006

View File

@ -145,7 +145,7 @@ class Mobject(Container):
# Updating
def update(self, dt):
def update(self, dt=0):
for updater in self.updaters:
num_args = get_num_args(updater)
if num_args == 1: