You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Removed State Succeeded/Failed from transitions as it currently does not make sense - Change "Add Routine" button to "Add State" -Rrenamed routines to SubTrees, generally support just one - Add a root node by default #jira UE-140363 #rb Yoan.StAmant #preflight 61f3a6bf801201ab387c9b99 #ROBOMERGE-AUTHOR: mikko.mononen #ROBOMERGE-SOURCE: CL 18769095 in //UE5/Release-5.0/... via CL 18769102 via CL 18769116 #ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v903-18687472) [CL 18769117 by mikko mononen in ue5-main branch]
46 lines
747 B
C#
46 lines
747 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class StateTreeModule : ModuleRules
|
|
{
|
|
public StateTreeModule(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePaths.AddRange(
|
|
new string[] {
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"AIModule",
|
|
"GameplayTasks",
|
|
"GameplayTags",
|
|
"StructUtils",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"RenderCore",
|
|
}
|
|
);
|
|
|
|
if (Target.Type == TargetType.Editor)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"UnrealEd" // Editor callbacks
|
|
}
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|