You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
UETOOL-281 - Improve data table workflows Added support for exporting to CSV and JSON Added support for importing from JSON (as well as the existing CSV support) Ported over the new data table editor look-and-feel Curve table editor now refreshes if the curve table it's editing is re-imported [CL 2514354 by Jamie Dale in Main branch]
27 lines
509 B
C#
27 lines
509 B
C#
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class CurveTableEditor : ModuleRules
|
|
{
|
|
public CurveTableEditor(TargetInfo Target)
|
|
{
|
|
PublicIncludePathModuleNames.Add("LevelEditor");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorStyle",
|
|
"UnrealEd"
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.Add("WorkspaceMenuStructure");
|
|
}
|
|
}
|