Currently, FSupportedAreaData is not marked as ENGINE_API and therefor it leads to an unresolved linker error when trying to use it.
Steps are easy to reproduce:
Include Engine in your
game/plugin/whatever module.build.cs (If it isn’t already there…)
Attempt to create FSupportedAreaData instance.
Get unresolved linker error.
Why should this be fixed:
Creating custom navigation data is rather hard (impossible) without having the ability to add supported areas.
For example, in my current use case I’m deriving from AAbstractNavData to create a custom waypoint graph to be used by Flying AI. I’m fairly sure that adding SupportedAreas is something anyone trying to create custom NavigationData (without circumventing the navigation system entirely) is going to need.