Corgi Engine
v9.0
|
This action performs one dash. More...
Public Member Functions | |
override void | Initialization () |
On init we grab our CharacterDash component More... | |
override void | PerformAction () |
On PerformAction we dash More... | |
Public Member Functions inherited from MoreMountains.Tools.AIAction | |
virtual void | OnEnterState () |
Describes what happens when the brain enters the state this action is in. Meant to be overridden. More... | |
virtual void | OnExitState () |
Describes what happens when the brain exits the state this action is in. Meant to be overridden. More... | |
Protected Member Functions | |
virtual void | Dash () |
Calls CharacterDash's StartDash method to initiate the dash More... | |
Protected Member Functions inherited from MoreMountains.Tools.AIAction | |
virtual void | Awake () |
On Awake we grab our AIBrain More... | |
Protected Attributes | |
CharacterDash | _characterDash |
Protected Attributes inherited from MoreMountains.Tools.AIAction | |
bool | _initialized |
AIBrain | _brain |
Additional Inherited Members | |
Public Types inherited from MoreMountains.Tools.AIAction | |
enum | InitializationModes { InitializationModes.EveryTime, InitializationModes.OnlyOnce } |
Public Attributes inherited from MoreMountains.Tools.AIAction | |
InitializationModes | InitializationMode |
whether initialization should happen only once, or every time the brain is reset More... | |
string | Label |
a label you can set to organize your AI Actions, not used by anything else More... | |
Properties inherited from MoreMountains.Tools.AIAction | |
virtual bool | ActionInProgress [get, set] |
virtual bool | ShouldInitialize [get] |
This action performs one dash.
|
protectedvirtual |
Calls CharacterDash's StartDash method to initiate the dash
|
virtual |
On init we grab our CharacterDash component
Reimplemented from MoreMountains.Tools.AIAction.
|
virtual |
On PerformAction we dash
Implements MoreMountains.Tools.AIAction.
|
protected |