Dynamic Nav Mesh does not update when procedural mesh is moved in a project packaged for linux

I’ve built a level where I have nav mesh that is dynamic at run time. There is a procedural mesh in my level. Everything works fine when I run in editor. As you can see from this image:

129924-ezgif.com-optimize.gif

But when I package the project for linux. The nav mesh no longer properly regenerates. As you can see from this image:

129926-ezgif.com-optimize+(1).gif

I’ve attached the project [ProvNavTest.zip][3] for ease of debugging.

I think I’ve narrowed down the problem to

this block of code:

	if ((AggGeom.ConvexElems.Num() == 0 && CDP == NULL) || !bHasCookedCollisionData)
	{
		return NULL;
	}

from Engine/Source/Runtime/Engine/Private/PhysicsEngine/BodySetup.cpp always returning NULL in the linux build.

when I change that code to :

	if ((AggGeom.ConvexElems.Num() == 0 && CDP == NULL) && !bHasCookedCollisionData)
	{
		return NULL;
	}

It seems to work, but I am not sure that is an appropriate fix.

Hey TMIVLeap-

Are you referring to the portion of the nav mesh on top of the sliding box? If the change you made was able to solve the issue for you, the best option would be to submit your fix as a pull request on GitHub (https://github.com/EpicGames/UnrealEngine/compare?expand=1) for consideration to be added directly to the engine.

Cheers