Modscraper Modscraper Minecraft
UniMixins logo

UniMixins

Mod

by makamys

A Mixin loader designed for maximum compatibility.

Type

Mod

CurseForge Downloads

2,417,450

CurseForge ID

826970

Modrinth Downloads

566,127

Modrinth ID

ghjoiQAl

Last Updated

Jul 28, 2026

Description

# UniMixins UniMixins is a Mixin loader for Minecraft 1.7.10 (with partial 1.8.9~1.12.2 support) designed for maximum compatibility. It aims to combine the features of as many mixin loaders as possible, and its modular nature makes it possible to use along other loaders if desired. ## Background Numerous Mixin loaders exist for 1.7.10, and each one provides a differing set of extra features we refer to as *"extras"* on top of providing Mixin. Since each of these loaders is monolithic, different ones cannot be used at the same time due to unavoidable feature overlap. To avoid this problem, UniMixins offers each feature as a separate module (but a combined jar is still provided for convenience). ## Comparison table Below is a table comparing the feature sets of known Mixin loaders. Note: A more detailed version of this table is available [here](https://legacymoddingmc.github.io/wiki/comparison-of-1.7.10-mixin-loaders/). ![](https://github.com/LegacyModdingMC/UniMixins/raw/master/docs/comparison-chart.png) * [NOP]: Does not do anything. [(issue)](https://github.com/FalsePattern/GasStation/issues/15) * [SEP]: Is available as a separate mod. ## Usage Download the `-all` jar, and put it in your mods directory. Remove any other conflicting Mixin loaders (refer to the above table). > **Note**: It's important for the jar to be named so that it comes first alphabetically, to avoid [a sorting issue](https://github.com/tox1cozZ/mixin-booter-legacy/issues/1) with mods that embed Mixin. This is why the jar starts with a `+` character. You may need to change this to a `!` character if you encounter issues with renamed jars. > > For reference, here is the sorting order of some notable characters: `!` < `+` < `0` < `[` < `_` < `a` ### Advanced usage You can also assemble your own combination of modules using the module jars. Some modules depend on other modules, see the **List of modules** section. Assuming no other Mixin loaders are present, you will generally want the following modules: * **Mixin** (any single fork) * **Compat** and **Mixingasm** (optional but highly recommended) * Modules providing any extras you need The game will crash if modules are missing dependencies. This can be disabled in the config. ## List of modules All modules depend on the Mixin module. Note that the dependents don't necessarily have to come from UniMixins modules, other mods may also be used to provide them. ### Included in `all`-jar * **Mixin (UniMix)**: Provides [a Mixin fork](https://github.com/LegacyModdingMC/UniMix) maintained by the UniMixins developers, based on [the Fabric fork](https://github.com/FabricMC/Mixin). * **SpongeMixins** [1.7.10 only]: Provides an emulation of [SpongeMixins](https://github.com/GTNewHorizons/SpongeMixins)'s extras. * **MixinBooterLegacy** [1.7.10 only]: Provides an emulation of [MixinBooterLegacy](https://github.com/tox1cozZ/mixin-booter-legacy)'s extras, and a relocated MixinExtras. * **MixinExtras**: Provides [MixinExtras](https://github.com/LlamaLad7/MixinExtras). * **GasStation** [1.7.10 only]: Provides an emulation of [GasStation](https://github.com/FalsePattern/GasStation)'s extras. * Depends on SpongeMixins. * Depends on MixinBooterLegacy. * Depends on MixinExtras * **GTNHMixins** [1.7.10 only]: Provides an emulation of [GTNHMixins](https://github.com/GTNewHorizons/GTNHMixins)'s extras, and a relocated MixinExtras. * Depends on SpongeMixins. * **Compat**: Various compatibility tweaks: * Remaps invalid references to Mixin classes (specifically the shaded ASM) in mods. * Adds information about mixins to crash reports. [1.7.10 only] * **Mixingasm**: Improves Mixin's compatibility with ASM transformers. ### Optional * **Future Compat** [1.8.9+ only]: Makes many of the modules usable on 1.8.9+. **Needed to run the mod on 1.8+.** (Not needed for Mixingasm.) ### Very Optional These are not included in releases, they mainly exist for testing purposes. (Note: You can only use a single Mixin module at the same time.) * **Mixin (SpongePowered)**: Provides [the upstream fork](https://github.com/SpongePowered/Mixin) of Mixin. * **Mixin (Fabric)**: Provides [the Fabric fork](https://github.com/FabricMC/Mixin) of Mixin. * **Mixin (GasMix)**: Provides [the GasStation fork](https://github.com/FalsePattern/GasMix) of Mixin. * **Mixin (GTNH)**: Provides [the GTNH fork](https://github.com/GTNewHorizons/SpongePoweredMixin) of Mixin. ## FAQ ### Why another mixin loader? Haven't you seen that one xkcd strip? Before UniMixins was created, there was far too much fragmentation among Mixin loaders on 1.7.10, with different mods requiring different incompatible loaders. This was partly due to conflicts between their developers, and partly because of technical reasons (the loaders were designed in a monolithic way, which invites incompatibility). This project has neither of those issues. modularity.png ### Why are you using the Fabric fork of Mixin? Isn't this a Forge mod? The Fabric fork of Mixin is more actively maintained than the upstream fork, and has some extra fixes. Most of the Fabric fork's changes are not Fabric-specific. ### What do the "extras" do anyway? * SpongeMixins, Grimoire, MixinBooterLegacy, GasStation and GTNHMixins offer various ways to let you mix into the classes of non-coremods. (This is something Mixin does not natively support, since all of its phases occur before Forge discovers non-coremods and puts them on the classpath.) - **MixinBooterLegacy**, **GasStation** and **GTNHMixins** add a "late" mixin phase that is fired right before the first mod construction event is dispatched. At this point all mods have been discovered. - **SpongeMixins** lets you manually add mods to the classpath early using their file names. An old, hacky solution. - We recommend new mods to use **GTNHMixins** as it's the most actively used and maintained option. * **Mixingasm** fixes [a Mixin issue](https://github.com/SpongePowered/Mixin/issues/309) that breaks some ASM transformers due to Mixin altering how they are called. * **MixinExtras** adds new Mixin features that allow mods to write less intrusive mixins. ### Mixin? mixin? SpongeMixins? SpongePowered? What's the difference? * [Mixin](https://github.com/SpongePowered/Mixin): a Java library that lets you transform Java classes in a fluent way. * [SpongePowered](https://spongepowered.org/): the organization that created Mixin (who also developed a modding API called Sponge). * [mixin](https://github.com/SpongePowered/Mixin/wiki/Introduction-to-Mixins---Understanding-Mixin-Architecture#4-only-you-mixins-can-save-mankind): a special Java class defining a "change" that should be applied to a class. These get applied by Mixin. * [SpongeMixins](https://github.com/TimeConqueror/SpongeMixins): a Mixin loader created by TimeConqueror that has a very generic name. ## License UniMixins is licensed under the Unlicense, with the exception of some modules. See [LICENSE](https://github.com/LegacyModdingMC/UniMixins/blob/master/LICENSE) for the full details.

Compatibility

Mod Loaders

Forge

Game Versions

1.7.10

Similar Mods

Included in Modpacks

Dragon Craft Super Dragon Craft Super GT New Horizons GT New Horizons Dragon Ball Zeef Dragon Ball Zeef Unofficial Dragon Block C Unofficial Dragon Block C Official FiskHeroes Server Official FiskHeroes Server Antique Optimizations Antique Optimizations NSO - Naruto Storm Online NSO - Naruto Storm Online Dragon Ball ZS Dragon Ball ZS Dragon Block C Infinite Power Anime Dragon Block C Infinite Power Anime DBC Realistic Multipliers DBC Realistic Multipliers Naruto Altverse Naruto Altverse Space Tech: Integrated Space Tech: Integrated Manametalmod  official Manametalmod official Avengers Initiative Marvel City Avengers Initiative Marvel City Mana Metal New Horizons Mana Metal New Horizons DBC Arai Craft DBC Arai Craft Nuclear Tech: Integrated Nuclear Tech: Integrated Dragon Block C Kai Official Dragon Block C Kai Official Dragon Block C Arise Dragon Block C Arise Dragon Block C Infinity Dragon Block C Infinity Star Wars: The Empire Strikes Block Star Wars: The Empire Strikes Block Naruto Destination Showcase Naruto Destination Showcase Thaumic Industries Thaumic Industries MercuryLanding MercuryLanding Fluffy Dragon Ball Z Fluffy Dragon Ball Z Material Energy^4 Material Energy^4 Icy's Handy Dragon Block C Icy's Handy Dragon Block C DBC Fury Unleashed DBC Fury Unleashed JET JET DBC Legends - By Gato DBC Legends - By Gato Shinobi Destiny Shinobi Destiny Fiskvincible Fiskvincible Skuff's Super Space Pack Skuff's Super Space Pack Naruto Storm Online [NSO] Naruto Storm Online [NSO] Dragon Block C Refresh Dragon Block C Refresh Dragon Block C by Aliado14 Dragon Block C by Aliado14 My Silly Little Dragonball Pack My Silly Little Dragonball Pack Dragon's DBC Ultimate Dragon's DBC Ultimate Apocalipsis Minecraft 4 (UNOFFICIAL) Apocalipsis Minecraft 4 (UNOFFICIAL) Ainulindalë Lord of the Rings 1.7.10 Ainulindalë Lord of the Rings 1.7.10 Dragon Block C Horizons Dragon Block C Horizons Jorney of MiddleEarth  - The Lord of the Rings - LOTR - Hobbit Jorney of MiddleEarth - The Lord of the Rings - LOTR - Hobbit Evolving Technology Evolving Technology Heros Unite: Legacy & Terror Heros Unite: Legacy & Terror DBC SMP DBC SMP Alca CrazyCraft Alca CrazyCraft Race To The Moon - RELAUNCHED Race To The Moon - RELAUNCHED HeroCraft - CrazyCraft Style HeroCraft - CrazyCraft Style Ragecraft: Tactical Warfare Ragecraft: Tactical Warfare Age of Bewitchment Age of Bewitchment Gregtech: Fallout Edition Gregtech: Fallout Edition NNC - Nuclear Nexus NNC - Nuclear Nexus Dragon Block Order Dragon Block Order HBM reborn. HBM reborn. DBC Craft DBC Craft Dragon Block Apollo Dragon Block Apollo Apocalipsis Minecraft 3 (UNOFFICIAL) Apocalipsis Minecraft 3 (UNOFFICIAL) HBM's NTM Space WorldBreaker HBM's NTM Space WorldBreaker Clayium for Beginners Clayium for Beginners Dragon Block To be the Ultra Instinct Dragon Block To be the Ultra Instinct  Dragon Block C Horizons Dragon Block C Horizons Dragon Block C (Super DBC) Dragon Block C (Super DBC) Pix Android Boost Pix Android Boost FOB Online: Flans Mod Warfare FOB Online: Flans Mod Warfare Stars of Stone Stars of Stone The Neverhoods of Thaumcraft The Neverhoods of Thaumcraft FISK_CUBED (Fisk's Superheroes) FISK_CUBED (Fisk's Superheroes) Dragon Block C - Super KroJe Dragon Block C - Super KroJe DBCS PHZINHOONE DBCS PHZINHOONE Crainer Craft 2 Crainer Craft 2 The Golden Cobblestone The Golden Cobblestone

External Resources