Hi all,
Bit of a tricky situation here. I’m using the grid to handle my pathfinding - it’s a procedurally generated world, and rather than the player moving through different areas, the world shifts to accomodate for floating point area.
Original was using the Procedural Grid Mover, but had more success without it.
Basically, my current problem is that as soon as a ‘shift’ happens, the grid becomes outdated as nothing is where it was previously - and so I’m having to call Scan() again.
It’s a bit of a hefty hit (107ms) last time I checked. Is there any way that I can space this out over the course of 20 or so frames?
Appreciate any insight, thank you.