Posted May 1, 20223 yr I did some functions on configuration and it works fine. But they can only be configured through the toml file. I want players to configure them in the mod information interface. Is there a way to achieve this? This is my configuration class。 public class ClientConfig { public static final ForgeConfigSpec CONFIG; public static ForgeConfigSpec.BooleanValue isToolBarOpen; static { ForgeConfigSpec.Builder configBuilder = new ForgeConfigSpec.Builder(); setupConfig(configBuilder); CONFIG = configBuilder.build(); } private static void setupConfig(ForgeConfigSpec.Builder builder) { isToolBarOpen = builder.define("is_tool_bar_open", true); } }
May 2, 20223 yr Author 8 hours ago, diesieben07 said: https://www.curseforge.com/minecraft/mc-mods/configured Thank you very much
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.