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
538 stars 188 forks source link

Fixed issue #246 by Schedule functions with arguments #318

Closed oak-cassia closed 2 weeks 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