Change typo from nonlocal var to local parameter

This commit is contained in:
JasonGrace2282 2024-02-02 16:34:46 -05:00
commit 6d4b595949

View file

@ -605,7 +605,7 @@ This represents how much time has passed between the last call of your updater.
# access the time defined outside this function
nonlocal time
time+=dt
d.set_value(time)
m.set_value(time)
d.add_updater(updater)
self.add(d)
self.wait(1.1)