Navigation
API > API/Plugins > API/Plugins/GameplayGraph > API/Plugins/GameplayGraph/Graph
References
| Module | GameplayGraph |
| Header | /Engine/Plugins/Experimental/GameplayGraph/Source/GameplayGraph/Public/Graph/GraphIsland.h |
| Include | #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 | Description |
|---|---|
| None | |
| Add | |
| Split | |
| Merge | |
| Destroy | |
| All |
Remarks
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.