lordmauve / pgzero

A zero-boilerplate games programming framework for Python 3, based on Pygame.
https://pygame-zero.readthedocs.io/
GNU Lesser General Public License v3.0
527 stars 191 forks source link

Fixed issue #246 by Schedule functions with arguments #318

Open oak-cassia opened 1 year ago

oak-cassia commented 1 year ago

Function can use partial as shown in the issue. clock.schedule_unique(partial(set_alien_normal, alien, 'blue'))

246