Pathfinding library
Posted
by
Shivan Dragon
on Game Development
See other posts from Game Development
or by Shivan Dragon
Published on 2012-08-30T12:59:31Z
Indexed on
2012/08/30
21:51 UTC
Read the original article
Hit count: 403
java
|path-finding
I'm an amateur game developer and somewhat amateur Java developer as well. I'm trying to find a way to have path finding for my game(s). I've first Googled for some existing Java libraries that have various path-finding implementations, but I've failed to find any. It seems to me that the only way to get pathfinding code is to use it via a game engine (like Unity). But I'd just like to have a library that I can use and make the game loop and other stuff on my own.
Failing to find such a library I've tried implementing some algorithms myself. I've managed to make a running A* in Java, but for fancier stuff like D* I find it hard to do it by hand.
So then, my question is, are there any Java libraries that contain at least some basic pathfinding algorithms implementations?
© Game Development or respective owner