I am currently developing a new Path Finder without using pathing libs such as A Star, The path finder will be able to create grids at runtime or in the editor. I am also currently implementing a means for ai to cross gaps that are air suspended, such as jumping from one building to another. There are Intelligence level presets that can be adjusted so the ai will roam around until a distance is met. I am looking forward to replies and ideas that can be packed into this path finder, I was in need of something like this a while back and decided to make my own. There is a ton of path finders already out there but implementing runtime is a hassle, I have a simple demo that can be used as a benchmark to see what my path finder is capable of. I have not optimized anything in the scene, I slapped it together as a means to stress the algorithm.
Left mouse click inside the mini map to place blocks
press s once your build is completed.
WDSA - movement;
B - show / hide Buildings;
SPACEBAR - Instantiate Enemies;
https://dl.dropboxusercontent.com/u/179470077/pnwApath/pathfinder.html
Best Regards,
Levon M Ravel.
—Updates—
All times Listed
Pacific Standard
11.21.2014
12:44pm
The pathfinder is nearly completed, I will be putting the asset on the store within this week starting price will be $30 usd. Once all the quirks are worked out the price will double, So far in this edition everything has been simplified. This pathfinder can be used at runtime or in editor I will make a tutorial shortly.
Steps to create AI
add PwnManager to a gameObject
add controller script to enemy
The pwnmanager has 2 options specify how high to sample the terrain, and how far apart.
the controller script has a robust option list and I will be getting to this today. For now I will leave on a high note and hope that this will be a nice solution to many pathing options available in todays market.
10.22.2014
9:43pm
I have made some progress and the path finder is now looking up. I can find paths for any grid given at runtime and or before runtime. I no longer use nodes falling into place this method took a long time.
8.23.2014
2:59pm
I have worked out the bugs in the algorithm, I am now making a new demo that will allow you to place blocks down and instantiate the grid-nodes over the blocks. This will help show how helpful this pathfinder really is, I will also make another demo for individual node placement. The demo should be good to go by tonight, Thank you for following.