Navigation
API > API/Plugins > API/Plugins/WorldConditions
Describes the availability of a context data.
| Name | EWorldConditionContextDataType |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/WorldConditions/Source/WorldConditions/Public/WorldConditionTypes.h |
| Include Path | #include "WorldConditionTypes.h" |
Syntax
enum EWorldConditionContextDataType
{
Dynamic,
Persistent,
}
Values
| Name | Remarks |
|---|---|
| Dynamic | The context data might change on each call, must check for validity, and is only available on IsTrue(). |
| Persistent | The context data is the same during the lifetime of the condition, must check for validity on Activate()/IsTrue(), might not be available on Deactivate(). |