Files
UnrealEngineUWP/Engine/Source/Editor/VirtualTexturingEditor/VirtualTexturingEditor.Build.cs
Jeremy Moore cdf050358b #jira UE-75325
Expose placement mode category refresh event.
Use it to add virtual texture volume actor to volumes category.
Need to change VirtualTexturingEditor module load order for this.
Move ActorFactoryRuntimeVirtualTextureVolume to account for this later load.
#lockdown marcus.wassmer
#rb none
#rnx

[CL 6867419 by Jeremy Moore in Dev-Rendering branch]
2019-06-06 17:06:11 -04:00

42 lines
964 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class VirtualTexturingEditor : ModuleRules
{
public VirtualTexturingEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.Add("Editor/VirtualTexturingEditor/Private");
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetRegistry",
"AssetTools",
"ContentBrowser",
"DesktopPlatform",
"MainFrame",
"UnrealEd",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"AssetRegistry",
"ContentBrowser",
"Core",
"CoreUObject",
"DesktopPlatform",
"DesktopWidgets",
"EditorStyle",
"Engine",
"InputCore",
"PlacementMode",
"PropertyEditor",
"Slate",
"SlateCore",
"UnrealEd",
}
);
}
}