You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb aaron.mcleran phil.popp #jira UEAU-720 #ROBOMERGE-SOURCE: CL 15619889 in //UE5/Release-5.0-EarlyAccess/... #ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v777-15581079) [CL 15619902 by jimmy smith in ue5-main branch]
21 lines
446 B
C++
21 lines
446 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "MetasoundFacade.h"
|
|
|
|
namespace Metasound
|
|
{
|
|
class METASOUNDSTANDARDNODES_API FNoiseNode : public FNodeFacade
|
|
{
|
|
public:
|
|
FNoiseNode(const FString& InName, const FGuid& InInstanceID, int32 InDefaultSeed);
|
|
FNoiseNode(const FNodeInitData& InInitData);
|
|
|
|
int32 GetDefaultSeed() const { return DefaultSeed; }
|
|
private:
|
|
int32 DefaultSeed;
|
|
};
|
|
}
|