WaitForFrames
Namespace: MonineEngine.Core.Coroutines
Yields a coroutine until the specified amount of frames has passed.
public class WaitForFrames
Inheritance Object → WaitForFrames
Properties
FrameCount
How many frames the routine should be yielded for.
public int FrameCount { get; }
Property Value
Elapsed
How many frames the routine has been yielded for.
public int Elapsed { get; set; }
Property Value
Constructors
WaitForFrames(Int32)
Constructs a new WaitForFrames instance.
public WaitForFrames(int frameCount)
Parameters
frameCount Int32
How many frames the routine will be yielded for.