Navigation
API > API/Plugins > API/Plugins/MetasoundFrontend
| Name | EMetasoundFrontendClassType |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundFrontend/Public/MetasoundFrontendDocument.h |
| Include Path | #include "MetasoundFrontendDocument.h" |
Syntax
enum EMetasoundFrontendClassType
{
External = 0,
Graph,
Input,
Output,
Literal,
Variable,
VariableDeferredAccessor,
VariableAccessor,
VariableMutator,
Template,
Invalid,
}
Values
| Name | Remarks |
|---|---|
| External | The MetaSound class is defined externally, in compiled code or in another document. |
| Graph | The MetaSound class is a graph within the containing document. |
| Input | The MetaSound class is an input into a graph in the containing document. |
| Output | The MetaSound class is an output from a graph in the containing document. |
| Literal | The MetaSound class is an literal requiring a literal value to construct. |
| Variable | The MetaSound class is an variable requiring a literal value to construct. |
| VariableDeferredAccessor | The MetaSound class accesses variables. |
| VariableAccessor | The MetaSound class accesses variables. |
| VariableMutator | The MetaSound class mutates variables. |
| Template | The MetaSound class is defined only by the Frontend, and associatively performs a functional operation within the given document in a registration/cook step. |
| Invalid |