Getting Started

What is Rayon?

Rayon is a rigid body simulation for entities library designed to work with Fabric and Forge.

What isn't Rayon?

Rayon isn't a rewrite of Minecraft's physics. Rather, it runs alongside Minecraft's original physics and simulates the motion of custom entities using LibBulletJME.

Include with Gradle

To include Rayon in your project, add the following to your build.gradle file.

repositories {
    maven { url "https://lazurite.dev/releases" }
}

dependencies {
    modImplementation 'dev.lazurite:rayon-fabric:VERSION'
    // OR
    modImplementation 'dev.lazurite:rayon-forge:VERSION'
}

Last updated