Upgraded from 4.19 to 4.20.2. Trying to get functionality back of open world navigation.
Getting the following warning in the Visual Logger:
LogNavigation (Warning) Trying to register BP_FireFly_C_3 as enforcer, but NavigationSystem is not set up for enforcer-centric generation. See GenerateNavigationOnlyAroundNavigationInvokers in NavigationSystem’s properties
Property “bGenerateNavigationOnlyAroundNavigationInvokers” is protected.
/* Open world navigation. Use Navigation Invoker*/
//GetWorld()->GetNavigationSystem()->RegisterNavigationInvoker(this);
auto navsys = FNavigationSystem::GetCurrent<UNavigationSystemV1>(this);
navsys->bGenerateNavigationOnlyAroundNavigationInvokers = true; //<-- inaccessible
navsys->RegisterNavigationInvoker(this);
So far my searching has not produced any answers. Strangely, my actors are moving around like they should.