Call event handlers from an event. For example, an event with .type = update, .args = [dt] translates to calling obj.draw(dt).
.type = update, .args = [dt]
obj.draw(dt)
Typically used at the end of a custom handleEvent.
Call event handlers from an event. For example, an event with
.type = update, .args = [dt]translates to callingobj.draw(dt).Typically used at the end of a custom handleEvent.