In previous version (4.19),I can use the overrided navigation system to default navigation class by modifying DefaultEngine.ini as follows:
[/Script/Engine.Engine]
NavigationSystemClassName=/Script/[MyGame].MyNavigationSystem
However, after upgrading the engine to 4.20.3, the NavigationSystemClass should be set in NavigationSystemConfig of WorldSettings.
If I have 10 umaps of using MyNavigationSystem, I need to set the class 10 times in worldSettings of these umaps.
I have tested this issue in newly created C++ Third Person project in UE4.20.3. There have no doubt about the complexity of game project.
I think the modifictation of 4.20 also conflicts with the config variable NavigationSystemClassName in Engine.h.
Since modifying the variable in DefaultEngine.ini does no change the default class in any map anymore.
Does there exist any easily and correct way to solve this issue? Thank you.