Java Port of Recast and Detour navigation mesh toolset.
More information about Recast and Detour
Recast & Detour is licensed under ZLib license, see License.txt for more information.
- out-of-the-box support for multi-threaded builds
- more compact file format due to reduced data structures and better compression with LZ4
- simple tool to import navmeshes created with A* Pathfinding Project
Recast4j releases are available in Maven Central Repository. The project includes 4 artifacts:
<dependency>
<groupId>org.recast4j</groupId>
<artifactId>recast</artifactId>
<version>1.0.7</version>
</dependency>
<dependency>
<groupId>org.recast4j</groupId>
<artifactId>detour</artifactId>
<version>1.0.7</version>
</dependency>
<dependency>
<groupId>org.recast4j</groupId>
<artifactId>detour-crowd</artifactId>
<version>1.0.7</version>
</dependency>
<dependency>
<groupId>org.recast4j</groupId>
<artifactId>detour-tile-cache</artifactId>
<version>1.0.7</version>
</dependency>
<dependency>
<groupId>org.recast4j</groupId>
<artifactId>detour-extras</artifactId>
<version>1.0.7</version>
</dependency>
Recast4j snapshots are currently available in Sonatype snapshots repository.
<repositories>
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>