FastNoise2-Java Bindings
July 27, 2026 ยท View on GitHub
Java bindings for FastNoise2 noise generation library
Uses the metadata system in FastNoise2 to reference node types and variable names, this means the bindings don't need to updated when there are new/changed nodes/variables in FastNoise2
Usage
You can add this library to your project using JitPack.
Requirements
- JDK Version: JDK 23 or later
- Supported Platforms:
| Platform | Architecture |
|---|---|
| Windows | x86_64 |
| Linux | x86_64 |
| macOS | arm64, x86_64 |
Gradle (Kotlin DSL)
In your build.gradle.kts file, add the following code:
repositories {
maven { url = uri("https://jitpack.io") }
}
dependencies {
implementation("com.github.CoolLoong:FastNoise2Bindings-Java:0.0.3")
}
Maven
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.CoolLoong</groupId>
<artifactId>FastNoise2Bindings-Java</artifactId>
<version>0.0.3</version>
</dependency>
</dependencies>