목록마인크래프트/마인크래프트 모딩 (6)
몰?.루();
모바일에서 신택스하이라이터가 제 역할을 하지 못한다... 모바일에서는 js 파일을 불러오지 못해서 생기는 문제 같은데 난감하다. 저번에 사진만 띄워봤으니 이번엔 버튼을 추가해보자. package com.toonraon.tistory.myfirstmod; import org.lwjgl.input.Keyboard; import org.lwjgl.opengl.GL11; import com.sun.org.apache.xml.internal.security.encryption.Reference; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.GuiButton; import net.minecraft.client.gui.GuiScreen..
아이템을 들고 우클릭하면 단순히 이미지 파일 GUI가 뜨게 해보자. GUI를 담당할 MyGUI.java 파일과 클래스를 생성한다. package com.toonraon.tistory.myfirstmod; import org.lwjgl.opengl.GL11; import com.sun.org.apache.xml.internal.security.encryption.Reference; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.GuiScreen; import net.minecraft.util.ResourceLocation; public class MyGUI extends GuiScreen { int GUIWidth = 100;..
좀 귀찮다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80package com.toonraon.tistory.myfirstmod; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.event.FMLInitial..
간단하게 init 부분에 GameRegistry.addRecipe(new ItemStack(아이템, 크래프팅에서나올개수), new Object[]{"SSS", " S ", "SSS", 'S', Blocks.stone, ....});만 추가해주면 된다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59package com.toonraon.tistory.myfirstmod; import cpw.mods.fml.common.Mod; import cpw.mods.f..
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49package com.toonraon.tistory.myfirstmod; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.commo..
어쩌다보니 이번 학기에 정작 코딩 수업은 없고 지루한 과목들만 수강하게 되면서 코딩을 할 기회가 사라졌다. 마땅히 만들고 싶은 프로그램이나 어플리케이션도 없어서 그냥 가만히 있다간 내 실력이 발전이 없을 것 같아서 뭘 할까 찾아보다가 마인크래프트 코딩을 해보기로 했다. 모바일 마크 코딩은 해봤어도 컴퓨터 마인크래프트라니...알아보니 완벽히 자바 계열의 코딩이라서 사실 부담을 없을 것 같다.API는 포지 모드로더 쪽에서 다 제공을 해주는 듯. 포지 모드로더와 그냥 모드로더 두 개가 있다가 모드로더 쪽이 망했다고 급식 시절에 들었는데 그게 무슨 의미인지 몰랐으나 지금와서 보니 모드로더쪽 API를 개발자들이 안 써서 모드로더쪽이 망했다는 것 같다. 일단 기본적인 개발환경 설정은 유튜브를 보고 따라했다.http..