FastNoise2-Java Bindings
September 2, 2025 ยท 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
- Minimum JDK Version: JDK 23
- 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.2")
}
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.2</version>
</dependency>
</dependencies>