Navigation
API > API/Plugins > API/Plugins/GameplayGraph
These are the possible operations that can be done to an island. The graph will attempt to check that the island is allowing these operations before successfully performing any of these operations. By default all operations are allowed.
| Name | EGraphIslandOperations |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/GameplayGraph/Source/GameplayGraph/Public/Graph/GraphIsland.h |
| Include Path | #include "Graph/GraphIsland.h" |
Syntax
enum EGraphIslandOperations
{
None = 0,
Add = 1 << 0,
Split = 1 << 1,
Merge = 1 << 2,
Destroy = 1 << 3,
All = Add | Split | Merge | Destroy,
}
Values
| Name | Remarks |
|---|---|
| None | |
| Add | |
| Split | |
| Merge | |
| Destroy | |
| All |