ICoroutine
Last updated
Last updated
Token representing a coroutine.
public interface ICoroutine
Stop the coroutine
Syntaxpublic Abort ()
Remarks
RequirementsNamespace: Sansar.Script Assembly: Sansar.Script (in Sansar.Script.dll) Assembly Versions: 1.0.0.0
Is this coroutine is still working or waiting.
SyntaxValue
Will return false if this coroutine has completed or had Abort() called on it or thrown an exception.
Remarks
RequirementsNamespace: Sansar.Script Assembly: Sansar.Script (in Sansar.Script.dll) Assembly Versions: 1.0.0.0
Is the coroutine waiting.
SyntaxValue
True if the coroutine is waiting for time or an event.
Remarks
RequirementsNamespace: Sansar.Script Assembly: Sansar.Script (in Sansar.Script.dll) Assembly Versions: 1.0.0.0
The name of the coroutine.
SyntaxValue
Documentation for this section has not yet been entered.
Remarks
RequirementsNamespace: Sansar.Script Assembly: Sansar.Script (in Sansar.Script.dll) Assembly Versions: 1.0.0.0
Reset the signal count on a coroutine.
Syntax
Remarks
RequirementsNamespace: Sansar.Script Assembly: Sansar.Script (in Sansar.Script.dll) Assembly Versions: 1.0.0.0
Send a signal to the coroutine and wake it up if it is waiting for a signal.
Syntax
Remarks
RequirementsNamespace: Sansar.Script Assembly: Sansar.Script (in Sansar.Script.dll) Assembly Versions: 1.0.0.0
public IsAlive { get; }
public IsWaiting { get; }
public Name { get; set; }
public ResetSignals ()
public Signal ()