HomeJavaModsBento Config
Bento Config
ModsJava

Bento Config

by Chai · on Modrinth

The declarative config library from Bento Box. Free Minecraft Java mod for 1.21, 1.21.1.

⬇ Download on Modrinth
Bento Config — screenshot 1Bento Config — screenshot 2

Bento Config

Bento Config is an annotation-driven configuration system built using Bento GUI. It aims to be simple yet powerful, with no magic pre-processors or arbitrary limitations.

Features:

Bento Config is documented in-code with JavaDocs and on my wiki.

public class MyConfig extends BentoConfig<MyConfig> {
    public boolean spawn_creepers = true;
    @Regex("[a-z]{1,10}")
    public String creeper_name = "creeper";
    @Header("spawn_settings")
    @Range(min = 1, max = 10)
    public int spawn_amount = 3;
    @Percentage
    public float spawn_chance = 0.5f;
    @Header("loot_settings")
    public Item creeper_loot = Items.GUNPOWDER;
}
public class MyModInitializer implements ModInitializer {
   ...
   public static final MyConfig CONFIG = new MyConfig.register("my_mod_id");
   ...
}
Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more