All versions
1.1.1
Release
VFXWeaver API 1.1.1 (1.21.11)3 days ago 10
Compatibility
Minecraft: Java Edition
1.21.11
Platform
Fabric
Supported environments
Client-side
Client and server
Changes
VFXWeaver API 1.1.1
Added
- Server-synchronized
scoreboardbindings: the server derives the tracked (objective, holder) pairs from the effect definitions it sends and pushes value diffs once per tick; the client caches them. Fixes scoreboard binds on objectives that are not displayed in a slot. The network protocol version is bumped - update client and server together. - Standard cubic-Bezier easing curves: inline { "cubicBezier": [x1, y1, x2, y2] } and named data/<ns>/vfx_curves/<name>.json files with { "cubicBezier": [...] } (e.g. ease-out-back = [0.34, 1.56, 0.64, 1]). Smooth motion instead of a piecewise-linear polyline.
- Multi-version build: one source ships for Minecraft 1.21.11, 26.1.x and 26.2.
Fixed
- Custom easing curves no longer silently degrade to LINEAR (named curves resolve lazily, inline curves use the client's own definition copy, and curves are applied before definitions on sync).
- Animated start/end parameters now pass the end value through the easing.
- /vfx stop <collection> now cancels the whole pending subtree, including nested collections.
- Player-bound world overlays (pos_x/y/z bound to player_x/y/z) no longer jitter at 20 Hz and are no longer offset by +0.5 block on X/Z.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:HBhB8m4j:WSMLUENd"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:HBhB8m4j:WSMLUENd"
}

