EvilCocoGame1/addons/reactivex/abc/periodicscheduler.gd

16 lines
413 B
GDScript3
Raw Permalink Normal View History

2025-01-11 00:25:52 +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