showbase: Add `do_events()` and `process_event()` snake_case aliases

This commit is contained in:
rdb 2022-12-06 12:57:02 +01:00
parent 02028aa789
commit 95a77e4f75
1 changed files with 3 additions and 0 deletions

View File

@ -179,3 +179,6 @@ class EventManager:
# since the task removal itself might also fire off an event.
if self.eventQueue is not None:
self.eventQueue.clear()
do_events = doEvents
process_event = processEvent