You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Jimmy.Smith #jira UE-110148 #ROBOMERGE-SOURCE: CL 15632842 in //UE5/Release-5.0-EarlyAccess/... #ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v777-15581079) [CL 15632845 by aaron mcleran in ue5-main branch]
24 lines
466 B
C++
24 lines
466 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "MetasoundFacade.h"
|
|
|
|
namespace Metasound
|
|
{
|
|
/** FEnvelopeFollowerNode
|
|
*
|
|
* Delays an audio buffer by a specified amount.
|
|
*/
|
|
class METASOUNDSTANDARDNODES_API FEnvelopeFollowerNode : public FNodeFacade
|
|
{
|
|
public:
|
|
/**
|
|
* Constructor used by the Metasound Frontend.
|
|
*/
|
|
FEnvelopeFollowerNode(const FNodeInitData& InitData);
|
|
};
|
|
} // namespace Metasound
|
|
|