Skip to content

Commit

Permalink
Optimized tick & Owners, fixed warning on BP nodes, more
Browse files Browse the repository at this point in the history
  • Loading branch information
muit committed Oct 5, 2023
1 parent 376e8cd commit e22ba35
Show file tree
Hide file tree
Showing 34 changed files with 1,046 additions and 793 deletions.
37 changes: 22 additions & 15 deletions ActionsExtension.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,35 @@
"Type": "Runtime",
"LoadingPhase": "PreDefault",
"WhitelistPlatforms": [
"Win64",
"Win32",
"Linux",
"PS5",
"XboxOne",
"Switch",
"Mac"
"Win64",
"Mac",
"IOS",
"Android",
"Linux"
]
},
{
"Name": "ActionsGraph",
"Type": "UncookedOnly",
"LoadingPhase": "Default",
"WhitelistPlatforms": [
"Win64",
"Mac",
"IOS",
"Android",
"Linux"
]
},
{
"Name": "ActionsEditor",
"Type": "Editor",
"LoadingPhase": "PostEngineInit",
"WhitelistPlatforms": [
"Win64",
"Win32",
"Linux",
"PS5",
"XboxOne",
"Switch",
"Mac"
"Win64",
"Mac",
"IOS",
"Android",
"Linux"
]
},
{
Expand All @@ -47,7 +55,6 @@
"LoadingPhase" : "PreDefault",
"WhitelistPlatforms": [
"Win64",
"Win32",
"Linux",
"Mac"
]
Expand Down
12 changes: 1 addition & 11 deletions Source/Actions/Actions.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,10 @@ public Actions(ReadOnlyTargetRules TargetRules) : base(TargetRules)
"Core",
"CoreUObject",
"Engine",
"GameplayTasks",
"AIModule"
});

PrivateDependencyModuleNames.AddRange(new string[]{});


if (TargetRules.bBuildEditor == true)
{
PrivateDependencyModuleNames.AddRange( new string[] {
"SlateCore",
"Slate"
});
}
PrivateDependencyModuleNames.AddRange(new string[] { });

if (TargetRules.bBuildDeveloperTools || (Target.Configuration != UnrealTargetConfiguration.Shipping && Target.Configuration != UnrealTargetConfiguration.Test))
{
Expand Down
Loading

0 comments on commit e22ba35

Please sign in to comment.