You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Update default values for standard nodes to sensible values #rb phil.popp #jira UEAU-687 #fyi jimmy.smith [CL 15299246 by Rob Gay in ue5-main branch]
23 lines
453 B
C++
23 lines
453 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "MetasoundFacade.h"
|
|
|
|
namespace Metasound
|
|
{
|
|
/** FADSRNode
|
|
*
|
|
* Creates an Attack, Decay Sustain, Release audio processor node.
|
|
*/
|
|
class METASOUNDSTANDARDNODES_API FADSRNode : public FNodeFacade
|
|
{
|
|
public:
|
|
/**
|
|
* Constructor used by the Metasound Frontend.
|
|
*/
|
|
FADSRNode(const FNodeInitData& InitData);
|
|
};
|
|
} // namespace Metasound
|