Skip to content

CoolLoong/FastNoise2Bindings-Java

Repository files navigation

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:
Platform Architecture
Windows x86_64
Linux x86_64
macOS 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.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>

About

Java bindings for FastNoise2 noise generation library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages