Text Effects
ModWonky text effects integrated into vanilla components
Type
Mod
Modrinth Downloads
784
Modrinth ID
TXwLqayf
Last Updated
Jun 26, 2026
Description

This library adds text effects which can be used by servers and mods to add unique effects to component-based text.
Integrated effects:
-
Wobble
-
Shake
-
Marquee
... and more
Usage
Add Dependency
build.gradle.kts:
repositories { // ... maven("https://maven.axolotlclient.com/releases") } dependencies { // ... // use modImplementation for versions <26.1 if on fabric implementation("io.github.moehreag:text-effects:<VERSION>") }Apply Effects
// A few other pre-made effects are available in the `TextEffects` class. // Usage may differ slightly depending on game version. var text = Component.literal("This is a text with effect!").withStyle(Style.EMPTY.text_effects$withEffect(TextEffects.WOBBLE));Create your own effects
A few factory methods for common operations are provided in the TextEffect class. Some pre-made effects are provided in the TextEffects class, with a few additional helper methods as well as registration handling. If you'd like to build on top of another effect you can use TextEffect#combine.
public static TextEffect CUSTOM_EFFECT = TextEffects.register(Identifier.fromNamespaceAndPath("modid", "custom_effect"), TextEffect.constantYOffset(-2));Effects are automatically able to be de/serialized in components using their id provided at registration.
{ text: "text with a nice effect", text-effects: "text-effects:wobble" }This component works for 26.1, you will need to change it accordingly for minecraft versions using json components instead of snbt.
This format can also be used in commands, for example /tellraw.
Compatibility
Mod Loaders
Game Versions
Screenshots
Similar Mods
Blaze Craft Reborn Beta (BCRB)
this CREATE ADDON adds tools and items that are better than Netherite this mod is only for 1.20.1
Netherite Extension
High version fabric/forge port of netherite plus
Filtered Receptacles
Provides basic blocks for an improved near-vanilla item sorting experience.
RS Pockets
Create pocket dimensions with this mod!
Option Focus Fix
Fixes a bug introduced in 1.19.4, which made options stay focused even if you don't hover over them after clicking.
Farmer's Cutting Everything
Lets you cut most items into ingredients using cutting board mechanic.