Skip to content

Commit 6431f63

Browse files
authored
Merge pull request #11 from MalikuMane/pr
Update module and plugin dependencies to fix build errors and warnings for 5.5.
2 parents 02c52cc + 149a8a6 commit 6431f63

File tree

16 files changed

+111
-10
lines changed

16 files changed

+111
-10
lines changed

MassAITesting.uproject

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@
1919
"Name": "AnimToTexture",
2020
"Enabled": true
2121
},
22-
{
23-
"Name": "MassEntity",
24-
"Enabled": true
25-
},
2622
{
2723
"Name": "MassCrowd",
2824
"Enabled": true
@@ -46,6 +42,14 @@
4642
{
4743
"Name": "GameplayStateTree",
4844
"Enabled": true
45+
},
46+
{
47+
"Name": "StateTree",
48+
"Enabled": true
49+
},
50+
{
51+
"Name": "SmartObjects",
52+
"Enabled": true
4953
}
5054
]
5155
}

Plugins/BuildingManager/BuildingManager.uplugin

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,15 @@
2020
"Type": "Runtime",
2121
"LoadingPhase": "Default"
2222
}
23+
],
24+
"Plugins": [
25+
{
26+
"Name": "SmartObjects",
27+
"Enabled": true
28+
},
29+
{
30+
"Name": "MassGameplay",
31+
"Enabled": true
32+
}
2333
]
2434
}

Plugins/BuildingManager/Source/BuildingManager/BuildingManager.Build.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ public BuildingManager(ReadOnlyTargetRules Target) : base(Target)
2828
"Core",
2929
"SmartObjectsModule",
3030
"MassSmartObjects",
31-
"GameplayTags"
31+
"GameplayTags",
32+
"MassEntity"
3233
// ... add other public dependencies that you statically link with here ...
3334
}
3435
);

Plugins/MassNavMesh/MassNavMesh.uplugin

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,19 @@
1919
"Type": "Runtime",
2020
"LoadingPhase": "Default"
2121
}
22+
],
23+
"Plugins": [
24+
{
25+
"Name": "MassAI",
26+
"Enabled": true
27+
},
28+
{
29+
"Name": "StateTree",
30+
"Enabled": true
31+
},
32+
{
33+
"Name": "MassGameplay",
34+
"Enabled": true
35+
}
2236
]
2337
}

Plugins/MassPersistence/MassPersistence.uplugin

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,11 @@
1919
"Type": "Runtime",
2020
"LoadingPhase": "Default"
2121
}
22+
],
23+
"Plugins": [
24+
{
25+
"Name": "MassGameplay",
26+
"Enabled": true
27+
}
2228
]
2329
}

Plugins/MassPersistence/Source/MassPersistence/MassPersistence.Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public MassPersistence(ReadOnlyTargetRules Target) : base(Target)
2525
PublicDependencyModuleNames.AddRange(
2626
new string[]
2727
{
28-
"Core", "MassEntity", "MassSignals", "MassSpawner", "StructUtils", "MassSignals"
28+
"Core", "MassEntity", "MassSignals", "MassSpawner", "MassSignals"
2929
// ... add other public dependencies that you statically link with here ...
3030
}
3131
);

Plugins/MassSmartObjectAI/MassSmartObjectAI.uplugin

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,23 @@
1919
"Type": "Runtime",
2020
"LoadingPhase": "Default"
2121
}
22+
],
23+
"Plugins": [
24+
{
25+
"Name": "SmartObjects",
26+
"Enabled": true
27+
},
28+
{
29+
"Name": "StateTree",
30+
"Enabled": true
31+
},
32+
{
33+
"Name": "MassGameplay",
34+
"Enabled": true
35+
},
36+
{
37+
"Name": "MassAI",
38+
"Enabled": true
39+
}
2240
]
2341
}

Plugins/MassWanderAI/MassWanderAI.uplugin

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,19 @@
1919
"Type": "Runtime",
2020
"LoadingPhase": "Default"
2121
}
22+
],
23+
"Plugins": [
24+
{
25+
"Name": "MassAI",
26+
"Enabled": true
27+
},
28+
{
29+
"Name": "StateTree",
30+
"Enabled": true
31+
},
32+
{
33+
"Name": "MassGameplay",
34+
"Enabled": true
35+
}
2236
]
2337
}

Plugins/MassWanderAI/Source/MassWanderAI/MassWanderAI.Build.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public MassWanderAI(ReadOnlyTargetRules Target) : base(Target)
2525
PublicDependencyModuleNames.AddRange(
2626
new string[]
2727
{
28-
"Core", "MassAIBehavior",
28+
"Core", "MassAIBehavior", "MassEntity"
2929
// ... add other public dependencies that you statically link with here ...
3030
}
3131
);
@@ -42,7 +42,7 @@ public MassWanderAI(ReadOnlyTargetRules Target) : base(Target)
4242
"StateTreeModule",
4343
"MassCommon",
4444
"MassNavigation",
45-
"MassSignals"
45+
"MassSignals",
4646
// ... add private dependencies that you statically link with here ...
4747
}
4848
);

Plugins/SpatialHashGridExample/Source/SpatialHashGridExample/SpatialHashGridExample.Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public SpatialHashGridExample(ReadOnlyTargetRules Target) : base(Target)
2525
PublicDependencyModuleNames.AddRange(
2626
new string[]
2727
{
28-
"Core", "MassEntity", "AIModule", "MassSignals",
28+
"Core", "MassEntity", "AIModule", "MassSignals"
2929
// ... add other public dependencies that you statically link with here ...
3030
}
3131
);

0 commit comments

Comments
 (0)