Skip to content

Commit 20ddb9c

Browse files
committed
enable common ui plugin
1 parent 6d40444 commit 20ddb9c

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

Source/TP_Chimp/TP_Chimp.Build.cs

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,26 @@ public TP_Chimp(ReadOnlyTargetRules Target) : base(Target)
66
{
77
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
88

9+
PublicIncludePaths.AddRange(new string[] {
10+
"TP_Chimp"
11+
});
12+
913
PublicDependencyModuleNames.AddRange(new string[] {
1014
"Core",
1115
"CoreUObject",
1216
"Engine",
1317
"InputCore",
14-
"EnhancedInput"
18+
"EnhancedInput",
19+
"NavigationSystem",
20+
"AIModule",
21+
"Niagara",
22+
"UMG",
23+
"GameplayTags",
1524
});
1625

17-
PrivateDependencyModuleNames.AddRange(new string[] { });
26+
PrivateDependencyModuleNames.AddRange(new string[] {
27+
"SlateCore",
28+
"CommonUI"
29+
});
1830
}
1931
}

TP_Chimp.uproject

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,10 @@
271271
{
272272
"Name": "OpenImageDenoise",
273273
"Enabled": false
274+
},
275+
{
276+
"Name": "CommonUI",
277+
"Enabled": true
274278
}
275279
]
276280
}

0 commit comments

Comments
 (0)