promotional bannermobile promotional banner

Capix!

A small API mod that allows Mod Developers to add capes to their mods

Capix

  • A small API mod that allows Mod Developers to add capes to their mods

Config Screen

Example Cape

Mod Developer

Fabric Setup Example

import net.yeoxuhang.capix.api.CapixApi;

public class ExampleModClient implements ClientModInitializer {
    @Override
    public void onInitializeClient() {
        // Using default
        CapixApi.registerCape(ExampleMod.MOD_ID, "Example Cape", "textures/example_cape.png", "https://raw.githubusercontent.com/ExampleTeam/Example/master/namelist.txt");
        // Texture from url
        CapixApi.registerCape(ExampleMod.MOD_ID, "Example Cape", "https://github.com/ExampleTeam/Example/blob/master/example_cape.png?raw=true", "https://raw.githubusercontent.com/ExampleTeam/Example/master/namelist.txt");
    }
}

NeoForge Setup Example

import net.yeoxuhang.capix.api.CapixApi;

@Mod("example_mod")
public class ExampleMod {

    public ExampleMod(IEventBus eventBus) {
        // Using default
        CapixApi.registerCape(ExampleMod.MOD_ID, "Example Cape", "textures/example_cape.png", "https://raw.githubusercontent.com/ExampleTeam/Example/master/namelist.txt");
        // Texture from url
        CapixApi.registerCape(ExampleMod.MOD_ID, "Example Cape", "https://github.com/ExampleTeam/Example/blob/master/example_cape.png?raw=true", "https://raw.githubusercontent.com/ExampleTeam/Example/master/namelist.txt");
    }
}

ModPacker

You can create cape using DataPack and ResourcePack

For DataPack Example

data/example_cape/capes/example_cape.json
pack.mcmeta
{
  "name": "Example Cape",
  "texture": "example_cape:textures/capes/example_cape.png"
}

For ResourcePack Example

assets/example_cape/textures/capes/example_cape.png
pack.mcmeta

Source

Report Issues

This mod is not affiliated with Mojang, Optifine, LabyMod, Capes, or the MinecraftCapes Mod

The Capix! Team

profile avatar
  • 62
    Followers
  • 10
    Projects
  • 6.1M
    Downloads
Donate

More from YeoXuHangView all

  • Endit project image

    Endit

    • 137
    • Mods

    A simple server-side mod that lets you change the End spawn platform position

    • 137
    • May 29, 2025
    • Mods
    • +4
  • Aurae! project image

    Aurae!

    • 56.0K
    • Mods

    A small Mod that add new ambient effects to the Minecraft!

    • 56.0K
    • November 13, 2024
    • Mods
    • +2
  • Geode+ project image

    Geode+

    • 4.9M
    • Mods

    A Mod that add geodes to Minecraft Overworld, Nether and even The End!

    • 4.9M
    • June 8, 2024
    • Mods
    • +4
  • ChorusLib project image

    ChorusLib

    • 31
    • Mods

    a small library for Chorus Team mods

    • 31
    • April 30, 2023
    • Mods
    • +1
  • Endit project image

    Endit

    • 137
    • Mods

    A simple server-side mod that lets you change the End spawn platform position

    • 137
    • May 29, 2025
    • Mods
    • +4
  • Aurae! project image

    Aurae!

    • 56.0K
    • Mods

    A small Mod that add new ambient effects to the Minecraft!

    • 56.0K
    • November 13, 2024
    • Mods
    • +2
  • Geode+ project image

    Geode+

    • 4.9M
    • Mods

    A Mod that add geodes to Minecraft Overworld, Nether and even The End!

    • 4.9M
    • June 8, 2024
    • Mods
    • +4
  • ChorusLib project image

    ChorusLib

    • 31
    • Mods

    a small library for Chorus Team mods

    • 31
    • April 30, 2023
    • Mods
    • +1