All versions
1.1.2
Release
VFXWeaver API 1.1.2 (26.1.x)yesterday 5
Compatibility
Minecraft: Java Edition
26.1.x
Platform
Fabric
Supported environments
Client-side
Client and server
Changes
VFX Weaver API 1.1.2
Added
- Client-local anchored playback:
VFXAPI.playEffect/playEffectIdaccept an optional world position and entity-UUID list for local (no packet) plays, andVFXAPI.moveEffect(effectId, instanceId, pos)re-anchors a running instance. Spatial bindings (screen_x,screen_y,proximity, ...) re-anchor to the point exactly like/vfx playat, sodent/shockwave/vortexland at the event and can follow it. - Client-side live control:
VFXAPI.setParam,VFXAPI.setParamExprandVFXAPI.setKeyframemirror the network actions locally, so a pure client-side mod can drive effects without a server round-trip. - Chained animation segments: a live keyframe with a negative time pins the value the parameter has right now and runs the segment to the new value over
|time|ticks - ramp a blur up and hold it, then send time-20/ value0to fade it back out from where it stands. One instance, one continuous curve. - More
exprmath functions:floor,ceil,round,fract,sign,clamp,lerp/mix,step,smoothstep,mod,tan,atan(y)/atan(y, x),exp,log. Argument counts are validated when the expression is compiled. - Live edits are recorded into Flashback replays:
setParam/setParamExpr/setKeyframereplay along with the original play (existing recordings still decode).
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:QpuKahr5"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:HBhB8m4j:QpuKahr5"
}

