C# 클래스 SpicyPixel.Threading.UnityFiberInstruction

Represents a fiber instruction to be processed by a FiberScheduler.
Specific instructions understood by a scheduler are to be derived from this abstract type.
파일 보기 프로젝트 열기: spicypixel/concurrency-kit-cs

공개 프로퍼티들

프로퍼티 타입 설명
WaitForEndOfFrame FiberInstruction
WaitForFixedUpdate FiberInstruction

공개 메소드들

메소드 설명
WaitForSeconds ( float seconds ) : FiberInstruction

Convenience coroutine to send a WaitForSeconds instruction to the scheduler.

메소드 상세

WaitForSeconds() 공개 정적인 메소드

Convenience coroutine to send a WaitForSeconds instruction to the scheduler.
public static WaitForSeconds ( float seconds ) : FiberInstruction
seconds float /// The seconds to wait. ///
리턴 FiberInstruction

프로퍼티 상세

WaitForEndOfFrame 공개적으로 정적으로 프로퍼티

Convenience coroutine to send a WaitForEndOfFrame instruction to the scheduler.
public static FiberInstruction,SpicyPixel.Threading WaitForEndOfFrame
리턴 FiberInstruction

WaitForFixedUpdate 공개적으로 정적으로 프로퍼티

Convenience coroutine to send a WaitForFixedUpdate instruction to the scheduler.
public static FiberInstruction,SpicyPixel.Threading WaitForFixedUpdate
리턴 FiberInstruction