I am looking for a C++ programmer who would help me with a custom pathfinding in my hobby 2D platformer. The goal is to have AI able to jump between platforms and do walljumps/wallruns.
Performance is very important for this project, so I assume expanding current pathfinding system would be the way to go
As far as I understand it, overriding “UPathFollowingComponent” and custom NavProxy is the correct way to do it
Payment preferably via Paypal
If you are interested or want to know more, please DM me or join Pathfinding Job
I think you might be able to use the existing 3D Navigation system if you lay your sprites on the Z plane and have the camera looking on it from above.
Actually you might just as well do with vertical alignment of tiles as well, just as long as they have collision setup properly
You can just have the standard Z is down setup. and extend platforms and players as 3D objects using box and capsule collisions (which you’ll do anyway with Paper2D)
So it should not be any different at all from making navigation and pathfinding for a 3D game as only the visual part of your game is 2D sprites but the collision will always be 3D.