Skip to content
chocoboy edited this page Jul 4, 2026 · 2 revisions

Cascade

A code-first visual effects and sequencing library for Minecraft 1.21.1, on NeoForge and Fabric. Your mod plays effects from server-side code; Cascade streams them to nearby clients, which own the simulation and rendering. Nothing spawns as an entity and nothing is saved.

Cascade is a developer library. On its own it adds nothing to the game.

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

Pages

Every method is documented in the javadoc on Vfx and the Vfx* builders.

Clone this wiki locally