実現したいこと
- 設定->操作設定->キー設定に自分のmodのキー設定を追加したい
発生している問題・エラーメッセージ
なし
コード:
- KeyConfig.java
java
1package com.github.peco2282.s.c.k; 2 3import com.github.peco2282.s.S; 4import net.minecraftforge.common.ForgeConfigSpec; 5 6public class KeyConfig { 7 KeyConfig(ForgeConfigSpec.Builder builder) { 8 ForgeConfigSpec.IntValue intValue = builder 9 .comment("first") 10 .translation(S.MODID) 11 .defineInRange(S.MODID, 0, 0, 20); 12 } 13}
- KeyConfSpec.java
java
1package com.github.peco2282.s.c.k; 2 3import com.github.peco2282.s.S; 4import net.minecraftforge.common.ForgeConfigSpec; 5import net.minecraftforge.fml.common.Mod; 6import org.apache.commons.lang3.tuple.Pair; 7 8@Mod.EventBusSubscriber(modid = S.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) 9public class KeyConfSpec { 10 static { 11 Pair<KeyConfig, ForgeConfigSpec> pair = new ForgeConfigSpec.Builder() 12 .configure(KeyConfig::new); 13 } 14}
試したこと
forge公式ドキュメントを参考にして作成下が機能しない
補足情報(FW/ツールのバージョンなど)
editor: IU-223.8836.41
version: net.minecraftforge:forge:1.19.3-44.1.23
あなたの回答
tips
プレビュー