Files
UnrealEngineUWP/Engine/Plugins/Runtime/SmartObjects/Source/SmartObjectsEditorModule/SmartObjectsEditorModule.Build.cs
mikko mononen a4f8b85727 Smart Object: Added parameters for Smart Object Definition
- Added ability to parameterize the SOD using parameters and property copy
- Each Asset stores and shares a variations based parameter hash

#rb Yoan.StAmant

[CL 30836942 by mikko mononen in ue5-main branch]
2024-01-24 03:53:02 -05:00

50 lines
918 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class SmartObjectsEditorModule : ModuleRules
{
public SmartObjectsEditorModule(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.AddRange(
new string[] {
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"AdvancedPreviewScene",
"Core",
"CoreUObject",
"Engine",
"GameplayTags",
"SmartObjectsModule",
"SourceControl",
"StructUtils",
"UnrealEd",
"WorldConditions",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"ApplicationCore",
"AssetDefinition",
"BlueprintGraph",
"ComponentVisualizers",
"InputCore",
"PropertyAccessEditor",
"PropertyBindingUtils",
"PropertyEditor",
"RenderCore",
"Slate",
"SlateCore",
"StructUtilsEditor",
"ToolWidgets",
}
);
}
}
}