Navigation
API > API/Plugins > API/Plugins/MetasoundFrontend
References
| |
|
| Module |
MetasoundFrontend |
| Header |
/Engine/Plugins/Runtime/Metasound/Source/MetasoundFrontend/Public/MetasoundFrontendDocument.h |
| Include |
#include "MetasoundFrontendDocument.h" |
Syntax
enum EMetasoundFrontendClassType
&123;
External,
Graph,
Input,
Output,
Literal,
Variable,
VariableDeferredAccessor,
VariableAccessor,
VariableMutator,
Template,
Invalid,
&125;
Values
| Name |
Description |
| 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 an literal value to construct. |
| Variable |
The MetaSound class is an variable requiring an 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 replacement operation in a pre-build step. |
| Invalid |
|