CoopShooterUdemy icon indicating copy to clipboard operation
CoopShooterUdemy copied to clipboard

Version of Engine 4.20.3. macOS Mojave. Troubles with project launching.

Open SteadyCoder opened this issue 6 years ago • 2 comments

When I am trying to build the project from the branch 4.20. It start to build, than throw an error that failed to compile. The error seems to be coming from STrackerBot.cpp. Can't find "NavigationSystem" and "AI/Navigation".

SteadyCoder avatar Nov 27 '18 16:11 SteadyCoder

Checkout your navigation system settings or share a screenshot.

ashishbairwa avatar Apr 09 '19 07:04 ashishbairwa

I had the same issue on Windows (4.23.1)

in STrackerBot.cpp...

change:

#include "AI/Navigation/NavigationSystem.h"
#include "AI/Navigation/NavigationPath.h"

to

#include "NavigationSystem.h"
#include "NavigationPath.h"

Change line 119 from UNavigationPath* NavPath = UNavigationSystem to UNavigationPath* NavPath = UNavigationSystemV1

in CoopGame.Build.cs

Then add NavigationSystem to module names.

chriswingler avatar Nov 11 '19 06:11 chriswingler