Files
UnrealEngineUWP/Engine/Plugins/Runtime/StateTree/Source/StateTreeEditorModule/StateTreeEditorModule.Build.cs
mikko mononen 1e28b99891 StateTree: Condition expressions
#jira UE-146925
#review-19478890
- Added ability to combine conditions into expressions
- Added editor UI for the expressions
- Replaced condition description with a name (makes the expressions faster to skim)
#preflight 62417309361866e20ffa6320

[CL 19524558 by mikko mononen in ue5-main branch]
2022-03-28 04:48:50 -04:00

51 lines
890 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class StateTreeEditorModule : ModuleRules
{
public StateTreeEditorModule(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.AddRange(
new string[] {
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"AssetTools",
"EditorFramework",
"UnrealEd",
"Slate",
"SlateCore",
"EditorStyle",
"PropertyEditor",
"StateTreeModule",
"Projects",
"BlueprintGraph",
"PropertyAccessEditor",
"StructUtils",
"StructUtilsEditor",
"GameplayTags"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"RenderCore",
"GraphEditor",
"KismetWidgets",
"PropertyPath",
"PropertyEditor",
"ToolMenus",
}
);
}
}
}