TestGame/addons/reactivex/abc/periodicscheduler.gd

16 lines
413 B
GDScript3
Raw Normal View History

2024-12-27 21:00:07 +01:00
extends SchedulerBase
class_name PeriodicSchedulerBase
## A scheduler for periodic actions
##
## Periodically schedules actions for repeated future execution.
## Schedule a periodic action for repeated execution every time
## [code]period[/code] seconds have expired.
func schedule_periodic(
_period : float,
_action : Callable,
_state = null) -> DisposableBase:
NotImplementedError.raise()
return null