提供: Minecraft Modding Wiki
2019年9月14日 (土) 22:28時点におけるRedice (トーク | 投稿記録)による版 (ページの作成:「public class ExampleMod { public static final Identifier SAMPLE_SOUND_ID = new Identifier(MOD_ID":sample_sound") public static SoundEvent SAMPLE_SOUND_EVENT = new…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先: 案内検索

public class ExampleMod {

   public static final Identifier SAMPLE_SOUND_ID = new Identifier(MOD_ID":sample_sound")
   public static SoundEvent SAMPLE_SOUND_EVENT = new SoundEvent(SAMPLE_SOUND_ID);
   @Override
   public void onInitialize(){
        [...]
        Registry.register(Registry.SOUND_EVENT, SampleMod.MY_SOUND_ID, MY_SOUND_EVENT);
   } 

}