Back to mods
Cascade project artwork

CurseForge · Minecraft mod

Cascade

A code-first visual effects and sequencing library. Particle emitters, beams, volumes, bloom, and choreographed timelines for other mods to build on.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Cascade release should I use?

Updated 2 months ago
Latest stable file cascade-neoforge-1.0.0+26.1.jar
Game version 26.1, 26.1.1, 26.1.2
Loader NeoForge

cascade-neoforge-1.0.0+26.1.jar targets 26.1, 26.1.1, 26.1.2 with NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.

Where it goes

Is Cascade required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release NeoForge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does cascade-neoforge-1.0.0+26.1.jar need?

cascade-neoforge-1.0.0+26.1.jar. Change the file and its required mods may change too.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional mods.

Before you install it

Add Cascade without breaking your instance.

Built for cascade-neoforge-1.0.0+26.1.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use cascade-neoforge-1.0.0+26.1.jar. It targets 26.1, 26.1.1, 26.1.2 with NeoForge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside cascade-neoforge-1.0.0+26.1.jar. It opens that exact file at the source.

About this project

What does Cascade add?

Cascade

A code-first visual effects and sequencing library for Minecraft on NeoForge and Fabric.

Cascade lets your mod play high-performance visual effects directly from server-side code. Effects are streamed to nearby clients, where they are simulated and rendered locally. Nothing is spawned as an entity, and nothing is saved to the world.

Cascade is a developer library.
Installing it by itself adds no gameplay content.

Demo

See Cascade in action:

https://www.youtube.com/watch?v=pa19m-STock


Quick Example

Vfx.emitter()
    .shape(ShapeSpec.sphere(0.5f))
    .count(200)
    .lifetime(40)
    .speed(0.2f)
    .gradient(Easings.LINEAR, 0xFFCC33, 0xFF3300)
    .play(level, pos);

Features

Particle System

  • Configurable emitter shapes
  • Size, alpha, velocity, and color curves
  • Multi-stop color gradients
  • Collision and soft particles
  • Trails and sub-emitters
  • Block, item, mesh, and custom particles

Simulation

  • Gravity and drag
  • Curl noise
  • Vortices and attractors
  • Boids flocking
  • Deterministic simulation core

Rendering

  • Beams
  • Energy domes
  • Camera shake
  • Dynamic light casting
  • Raymarched signed-distance volumes
  • HUD-layer particles
  • Selective bloom that only affects Cascade effects

Sequencing

  • Delays
  • Parallel branches
  • Composable effect timelines

Extensibility

  • Datapack-defined JSON effects
  • Registration API for custom particle behaviors
  • Optional GPU-resident backend for extremely large particle counts
  • Mixin-free on both NeoForge and Fabric
  • Unit-tested simulation core

Installation

Add the Maven repository:

repositories {
    maven {
        url = uri("" rel="noopener nofollow" target="_blank">https://raw.githubusercontent.com/ChocoBooyy/maven/main")
    }
}

Add the dependency matching your Minecraft version:

dependencies {
    implementation("dev.chocoboy.cascade:cascade-neoforge:1.0.0+26.1")
    // or:
    // implementation("dev.chocoboy.cascade:cascade-fabric:1.0.0+1.21.1")
}

Documentation

The wiki covers every feature, including:

  • Getting Started
  • Particle emitters
  • Sequencing
  • Behaviors
  • Rendering
  • Datapack effects
  • Custom extensions
  • Capabilities & Limits (exactly what works where)

Requirements

Minecraft Java Cascade Version
26.1 25 1.0.0+26.1
1.21.1 21 1.0.0+1.21.1

Supports:

  • NeoForge
  • Fabric + Fabric API

License

MIT

Project description from CurseForge.

Pick your setup

Cascade by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

8 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Cascade versions and loaders

4 of 4 releases match

Looking for an older file? The official CurseForge project page is in Resources.