Navigation
API > API/Plugins > API/Plugins/RigVM
The ERigVMMemoryType maps to memory container index in RigVM through FRigVMOperand::GetContainerIndex() or URigVM::GetContainerIndex(...) The type of memory used. Typically we differentiate between Work (Mutable) and Literal (Constant) memory.
| Name | ERigVMMemoryType |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/RigVM/Source/RigVM/Public/RigVMCore/RigVMMemoryCommon.h |
| Include Path | #include "RigVMCore/RigVMMemoryCommon.h" |
Syntax
enum ERigVMMemoryType
{
Work = 0,
Literal = 1,
External = 2,
Debug = 3,
Invalid,
}
Values
| Name | Remarks |
|---|---|
| Work | |
| Literal | |
| External | |
| Debug | |
| Invalid |