Jump to content

crazyjackel

Members
  • Posts

    24
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • Personal Text
    I am new and i am proud

crazyjackel's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. when i attempt to build gradlew.bat - so can have my friend test for me i get the following error: error: method references are not supported in -source 1.6 (even though i made sure my path and java home were under jdk1.8.0_91) RenderingRegistry.registerEntityRenderingHandler(mod.essence.essence.Entity.EssenceSplashEffect.class, mod.essence.essence.Renderes.RenderEssenceSplash::new) oh btw i have to go to bed, so i wont be able to respond til morning
  2. told you it would be simple, thx
  3. should i register crafting recipes in the preInit or init?
  4. i am very thankful for all the help you both have given me, and i really hope that you guys find at least a 20$ bill and a essence potion someone on the street also i changed my package name to mod.essence.essence
  5. hey choonstar (or someone else) can you send me the list of mcp naming conventions, just so in the future it will be easier to understand my buggy code
  6. okay i attempted changing a few things, but i cant find the issue, probably because i am a newb, but hopefully if i give you the code you can point me in the right direction. honestly, i need to find a mentor for this kind of things. http://pastebin.com/4b8H1J7b http://pastebin.com/BNEzadeu http://pastebin.com/ciqGM0Ar
  7. okay choonstar in the last post you attempt to explain how to do modelloader, trust me i got lost, but anyway this is a new post about the white box and how to fix first attempt to bind a texture: -failed public class RenderEssenceSplash extends RenderSnowball { public RenderEssenceSplash(RenderManager renderManagerIn) { super(renderManagerIn, Main.EssenceSplash, Minecraft.getMinecraft().getRenderItem()); this.bindTexture(new ResourceLocation("essence:EssenceSplash")); } } second attempt: -failrf public class RenderEssenceSplash extends RenderSnowball { public RenderEssenceSplash(RenderManager renderManagerIn) { super(renderManagerIn, Main.EssenceSplash, Minecraft.getMinecraft().getRenderItem()); } @Override public void doRender(Entity entity, double x, double y, double z, float entityYaw, float partialTicks){ this.bindTexture(new ResourceLocation("essence:EssenceSplash")); } } third attempt: -failed public class RenderEssenceSplash extends RenderSnowball { public RenderEssenceSplash(RenderManager renderManagerIn) { super(renderManagerIn, Main.EssenceSplash, Minecraft.getMinecraft().getRenderItem()); } public void doRender(){ this.bindTexture(new ResourceLocation("essence:EssenceSplash")); } } at least 15 other attempts - failed so yeah i am rendering and also attempting to bind texture, but the texture isnt being bound, dont really understand why it isnt working as the ResourceLocation worked when i was binding it for Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register i still dont understand ModelLoader and ModelBakery
  8. item.ingotsam, is this period needed?
  9. okay, i converted to modelloader and the textures arent being loaded, why?
  10. this mod is mostly in development for mainly me and my friends, i am not really confident in my skill to update it as such, btw i defined modelloaders in the preinit of client-my client proxy. how would i load those onto an item Item CowEssenceItem = GameRegistry.findItem("essence", "CowEssence"); ModelResourceLocation CowEssenceModel = new ModelResourceLocation("essence:CowEssence", "Inventory"); ModelLoader.setCustomModelResourceLocation(CowEssenceItem, 0, CowEssenceModel); these dont auto-attach to the item wow second page already for a 'simple fix'
  11. so move everything in the int phase to preinit except event busses okay did some research, gameregistry is not deprecated in 1.8.9 but has some deprecated commands which im not using
  12. didnt know how to get the fml log, but got everything else, probs did something wrong that is screwing the texture loading up http://pastebin.com/jYs7tPxp you know whats funny, i thought this would be a quick fix
  13. http://pastebin.com/VgqXX3WZ i believe this is what you want
  14. okay think i found the error, was registering the item after the proxy, and its rendering sorta fine, except not it shoots out a pure white block texture thing, if you need screenshots ill provide
  15. public class RenderEssenceSplash extends RenderSnowball { public RenderEssenceSplash(RenderManager renderManagerIn) { super(renderManagerIn, Main.EssenceSplash, Minecraft.getMinecraft().getRenderItem()); } } im not sure which on is the item render constructor, but can you plz quickly explain how to make it alright, come on, i almost got it
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.