Navigation
API > API/Plugins > API/Plugins/MetasoundGraphCore
Copyright Epic Games, Inc. All Rights Reserved.
| Name | Metasound::ENodeClassAccessFlags |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Public/MetasoundNodeInterface.h |
| Include Path | #include "MetasoundNodeInterface.h" |
Syntax
namespace Metasound
{
enum ENodeClassAccessFlags
{
None = 0,
Deprecated = 1 << 0,
Referenceable = 1 << 1,
Default = Referenceable,
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| Deprecated | Node class is deprecated and should not be used in new MetaSounds. |
| Referenceable | Node class can be referenced by MetaSound graphs |
| Default |