Copy the value of the Priority Count to a local IntegerVariable, intended primarily to assist with debugging use of Priority. More...
Public Member Functions | |
override void | OnEnter () |
Called when this command starts execution. More... | |
override string | GetSummary () |
Returns the summary text to display in the command inspector. More... | |
![]() | |
virtual Flowchart | GetFlowchart () |
Returns the Flowchart that this command belongs to. More... | |
virtual void | Execute () |
Execute the command. More... | |
virtual void | Continue () |
End execution of this command and continue execution at the next command. More... | |
virtual void | Continue (int nextCommandIndex) |
End execution of this command and continue execution at a specific command index. More... | |
virtual void | StopParentBlock () |
Stops the parent Block executing. More... | |
virtual void | OnStopExecuting () |
Called when the parent block has been requested to stop executing, and this command is the currently executing command. More... | |
virtual void | OnCommandAdded (Block parentBlock) |
Called when the new command is added to a block in the editor. More... | |
virtual void | OnCommandRemoved (Block parentBlock) |
Called when the command is deleted from a block in the editor. More... | |
virtual void | OnExit () |
Called when this command ends execution. More... | |
virtual void | OnReset () |
Called when this command is reset. More... | |
virtual void | GetConnectedBlocks (ref List< Block > connectedBlocks) |
Populates a list with the Blocks that this command references. More... | |
virtual bool | HasReference (Variable variable) |
Returns true if this command references the variable. More... | |
virtual string | GetHelpText () |
Returns the help text to display for this command. More... | |
virtual bool | OpenBlock () |
Return true if this command opens a block of commands. More... | |
virtual bool | CloseBlock () |
Return true if this command closes a block of commands. More... | |
virtual Color | GetButtonColor () |
Return the color for the command background in inspector. More... | |
virtual bool | IsPropertyVisible (string propertyName) |
Returns true if the specified property should be displayed in the inspector. More... | |
virtual bool | IsReorderableArray (string propertyName) |
Returns true if the specified property should be displayed as a reorderable list in the inspector. More... | |
virtual string | GetFlowchartLocalizationId () |
Returns the localization id for the Flowchart that contains this command. More... | |
Public Attributes | |
IntegerVariable | outVar |
Additional Inherited Members | |
![]() | |
int | itemId = -1 |
int | indentLevel |
string | errorMessage = "" |
![]() | |
virtual int | ItemId [get, set] |
Unique identifier for this command. More... | |
virtual string | ErrorMessage [get] |
Error message to display in the command inspector. More... | |
virtual int | IndentLevel [get, set] |
Indent depth of the current commands. More... | |
virtual int | CommandIndex [get, set] |
Index of the command in the parent block's command list. More... | |
virtual bool | IsExecuting [get, set] |
Set to true by the parent block while the command is executing. More... | |
virtual float | ExecutingIconTimer [get, set] |
Timer used to control appearance of executing icon in inspector. More... | |
virtual Block | ParentBlock [get, set] |
Reference to the Block object that this command belongs to. More... | |
Copy the value of the Priority Count to a local IntegerVariable, intended primarily to assist with debugging use of Priority.
Definition at line 13 of file FungusPriorityCount.cs.
|
virtual |
Returns the summary text to display in the command inspector.
Reimplemented from Fungus.Command.
Definition at line 25 of file FungusPriorityCount.cs.
|
virtual |
Called when this command starts execution.
Reimplemented from Fungus.Command.
Definition at line 18 of file FungusPriorityCount.cs.
IntegerVariable Fungus.FungusPriorityCount.outVar |
Definition at line 16 of file FungusPriorityCount.cs.