You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Only apply input widget editor setting to new inputs - Change default input widget to knob - Don't show input widgets on read only graphs - Tooltip clarification for setting audio component default parameters on MetaSounds #jira UE-156767 #jira UE-157740 #jira UE-157782 #jira UE-157782 #rb rob.gay #preflight 62b9de585d29d0d10ac0e071 [CL 20861733 by helen yang in ue5-main branch]
43 lines
774 B
C#
43 lines
774 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class MetasoundEngine : ModuleRules
|
|
{
|
|
public MetasoundEngine(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"AudioExtensions",
|
|
"AudioCodecEngine",
|
|
"MetasoundGraphCore",
|
|
"MetasoundGenerator",
|
|
"SignalProcessing"
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"CoreUObject",
|
|
"DeveloperSettings",
|
|
"Engine",
|
|
"MetasoundFrontend",
|
|
"MetasoundStandardNodes",
|
|
"AudioCodecEngine",
|
|
"Serialization",
|
|
"AudioPlatformConfiguration",
|
|
"WaveTable"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|