Home

Awesome

FastNoise2-Java Bindings

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

Example usage

Usage

You can add this library to your project using JitPack.

Requirements

  1. Minimum JDK Version: JDK 23
  2. Supported Platforms:
PlatformArchitecture
Windowsx86_64
Linuxx86_64
macOSx86_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.1")
}

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.1</version>
    </dependency>
</dependencies>