Navigation
API > API/Plugins > API/Plugins/GameplayInteractionsModule
References
| Module | GameplayInteractionsModule |
| Header | /Engine/Plugins/Runtime/GameplayInteractions/Source/GameplayInteractionsModule/Public/GameplayInteractionsTypes.h |
| Include | #include "GameplayInteractionsTypes.h" |
Syntax
enum EGameplayInteractionTaskModify
{
OnEnterStateUndoOnExitState,
OnEnterState,
OnExitState,
OnExitStateFailed,
OnExitStateSucceeded,
}
Values
| Name | Description |
|---|---|
| OnEnterStateUndoOnExitState | The modification takes effect when the state becomes active, and is undone when the state becomes inactive. |
| OnEnterState | The modification takes place when the state becomes active. |
| OnExitState | The modification takes place when the state becomes inactive. |
| OnExitStateFailed | The modification takes place if the state fails. |
| OnExitStateSucceeded | The modification takes place if the state succeeds. |
Remarks
Value specifying when a State Tree task based modification should take place.