LifecycleEvent
Wrapper utility for RBXScriptSignalss that take deltaTime as their only parameter.
Properties
Methods
withFixedFramerate
luau
LifecycleEvent:withFixedFramerate(framerate: number) -> LifecycleEventProvides a fixed framerate for the scheduler to go by. (this method is chainable)
connect
luau
LifecycleEvent:connect(callback: (deltaTime: number) -> ()) -> () -> ()Connects a callback to the LifecycleEvent, then returns a callback to disconnect it.
connectParallel
luau
LifecycleEvent:connectParallel(callback: (deltaTime: number) -> ()) -> () -> ()Connects a callback to the LifecycleEvent in parallel, then returns a callback to disconnect it.
connectOnce
luau
LifecycleEvent:connectOnce(callback: (deltaTime: number) -> ()) -> () -> ()Connects a callback to the LifecycleEvent which will be disconnected upon firing, then returns a callback to disconnect it.
wait
luau
LifecycleEvent:wait() -> numberWaits until the LifecycleEvent is fired, then returns the deltaTime.