PSO and Noise map generator plugin commit

This commit is contained in:
Ado
2026-07-06 19:43:47 +02:00
parent 2714ceb844
commit 546988060e
17 changed files with 1370 additions and 3 deletions

View File

@@ -0,0 +1,55 @@
// Copyright (c) 2025 Danielel. All rights reserved.
using UnrealBuildTool;
public class PSOFunctions : ModuleRules
{
public PSOFunctions(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicIncludePaths.AddRange(
new string[] {
// ... add public include paths required here ...
}
);
PrivateIncludePaths.AddRange(
new string[] {
// ... add other private include paths required here ...
}
);
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"Slate",
"SlateCore",
"RenderCore"
// ... add private dependencies that you statically link with here ...
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
}
}