You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
27 lines
699 B
C
27 lines
699 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "MetasoundEngineNodesNames.h"
|
||
|
|
#include "MetasoundNodeInterface.h"
|
||
|
|
#include "MetasoundParamHelper.h"
|
||
|
|
|
||
|
|
namespace Metasound::AudioBusWriterNode
|
||
|
|
{
|
||
|
|
template<uint32 NumChannels>
|
||
|
|
const FNodeClassName& GetClassName()
|
||
|
|
{
|
||
|
|
static const FName OperatorName = *FString::Printf(TEXT("Audio Bus Writer (%d)"), NumChannels);
|
||
|
|
static const FNodeClassName ClassName = { EngineNodes::Namespace, OperatorName, TEXT("") };
|
||
|
|
return ClassName;
|
||
|
|
}
|
||
|
|
|
||
|
|
METASOUNDENGINE_API int32 GetCurrentMajorVersion();
|
||
|
|
|
||
|
|
namespace Inputs
|
||
|
|
{
|
||
|
|
DECLARE_METASOUND_PARAM(METASOUNDENGINE_API, AudioBus);
|
||
|
|
DECLARE_METASOUND_PARAM(METASOUNDENGINE_API, Audio);
|
||
|
|
}
|
||
|
|
}
|