time.schedule_repeating method

schedule_repeating(self, func: Callable[[deltaTime: float], None]) -> Disposable:

Repeats execution of a function every frame.

Example

Parameters

  • func: Callable[[deltaTime: float], None]

    function to execute every frame.

Returns