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.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
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