4.11 Transition Guide

ActorComponent::bCanEverAffectNavigation is now protected, and cannot be directly accessed the same way as it could in 4.10.



// Old code:
SomeActorComponent->bCanEverAffectNavigation = false   // Will not compile in 4.11

// New code:
SomeActorComponent->SetCanEverAffectNavigation(false); // Works fine in 4.11