EMetasoundFrontendClassType

Choose your operating system:

Windows

macOS

Linux

References

Module

MetasoundFrontend

Header

/Engine/Plugins/Runtime/Metasound/Source/MetasoundFrontend/Public/MetasoundFrontendDocument.h

Include

#include "MetasoundFrontendDocument.h"

Syntax

enum EMetasoundFrontendClassType
{
    External,
    Graph,
    Input,
    Output,
    Literal,
    Variable,
    VariableDeferredAccessor,
    VariableAccessor,
    VariableMutator,
    Invalid,
}

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.

Invalid