Best practice for NavModifiers

So I have an Actor that is submerged in water. Player pushes a button and the Actor comes up for them to cross.

What’s the best practice to have nav mesh turn on and off for the Actor? NavModifier is awfully hard to modify (change its szie) and Actors can’t take NavModifierVolumes. I’d rather not add an editable instance on the actor to place a NavModifierVolume as I’m using these bridges for randomly generated content.

Help me Epic-Kenobi, you’re my only hope.

Can you describe what you mean by on and off? If you mean affect navigation or not, I believe you can just turn collision on/off on the object and it rebuilds dynamic navmeshes - at least in the quick example I did to test, it did so.

mrteuy, thanks for the reply!

I’ll try turning collision on and off but is the compute cost high (as I can set my project settings to compute nav mesh using this method)? I’m working on a mobile product.