Posted September 14, 20178 yr Hey, I was trying to add in Wavefront OBJ models into the game and have not been successful can anyone help me?
September 15, 20178 yr Author 29 minutes ago, MDW01 said: Could you give us more information on what is happening? yea do you want the github?
September 15, 20178 yr That would help. Add links to the relevant files in your comment. Also remember to mark the relevant lines of your code in github first before copying the link. Relevant files would contain the following: Where are you trying to render your model? (Block / Entity etc.) What did you do so far? Your model file. (In order to determine if it is a valid .obj file) Where are you registering your renderers etc. What is your model supposed to look like. (A screenshot of your modeling software would be greatly appreciated) PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.
September 15, 20178 yr Author 27 minutes ago, Busti said: That would help. Add links to the relevant files in your comment. Also remember to mark the relevant lines of your code in github first before copying the link. Relevant files would contain the following: Where are you trying to render your model? (Block / Entity etc.) What did you do so far? Your model file. (In order to determine if it is a valid .obj file) Where are you registering your renderers etc. What is your model supposed to look like. (A screenshot of your modeling software would be greatly appreciated) I want to render it out as an entity, I got the source code for more player models because I want to morph into the models I implemented, I haven't registered the models yet. CerealModel.mtl CerealModel.obj
September 15, 20178 yr Author 29 minutes ago, Busti said: That would help. Add links to the relevant files in your comment. Also remember to mark the relevant lines of your code in github first before copying the link. Relevant files would contain the following: Where are you trying to render your model? (Block / Entity etc.) What did you do so far? Your model file. (In order to determine if it is a valid .obj file) Where are you registering your renderers etc. What is your model supposed to look like. (A screenshot of your modeling software would be greatly appreciated) I'll upload the mod into github now just one sec
September 15, 20178 yr Author 38 minutes ago, Busti said: That would help. Add links to the relevant files in your comment. Also remember to mark the relevant lines of your code in github first before copying the link. Relevant files would contain the following: Where are you trying to render your model? (Block / Entity etc.) What did you do so far? Your model file. (In order to determine if it is a valid .obj file) Where are you registering your renderers etc. What is your model supposed to look like. (A screenshot of your modeling software would be greatly appreciated) I couldn't upload it into GitHub so I uploaded to dropbox https://www.dropbox.com/home?preview=more+player+models.rar
September 15, 20178 yr Sorry I do not have a dropbox accoount. Also that link is not valid. It would probably be best if you just posted your code here. Just remember to use the code button in the editor to properly format your text. Minecraftforge does supply its own .obj loader, so that would be a good thing to look into. You also have to supply and register your own net.minecraft.renderer.entity.Render The Render's doRender() method is where you want to render your .obj model. You'll find the .obj model loader and related classes in net.minecraftforge.client.model.obj and net.minecraftforge.client.model PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.
September 15, 20178 yr Author 8 minutes ago, Busti said: Sorry I do not have a dropbox accoount. Also that link is not valid. It would probably be best if you just posted your code here. Just remember to use the code button in the editor to properly format your text. Minecraftforge does supply its own .obj loader, so that would be a good thing to look into. You also have to supply and register your own net.minecraft.renderer.entity.Render The Render's doRender() method is where you want to render your .obj model. You'll find the .obj model loader and related classes in net.minecraftforge.client.model.obj and net.minecraftforge.client.model Wait nvm it's uploading to GitHub I'll post the link when it is done uploading. Edited September 15, 20178 yr by Blitex
September 15, 20178 yr Author 12 minutes ago, Busti said: Sorry I do not have a dropbox accoount. Also that link is not valid. It would probably be best if you just posted your code here. Just remember to use the code button in the editor to properly format your text. Minecraftforge does supply its own .obj loader, so that would be a good thing to look into. You also have to supply and register your own net.minecraft.renderer.entity.Render The Render's doRender() method is where you want to render your .obj model. You'll find the .obj model loader and related classes in net.minecraftforge.client.model.obj and net.minecraftforge.client.model I got it here it is https://github.com/Blitex/moreplayermodels
September 15, 20178 yr Why did you remove the .gitignore? And all the important gradle scripts and files? (Those things are not just there to add bloat to your working directory you know) Also you probably want to read or watch some tutorials on git. (Trust me, I once was at that point too) You should create your own packages for your classes and get rid of putting your files into minecraft directories. In case you are not sure how things are done there are a ton of open source mods on github that you can dig through to see how other modders do and structure certain things. Choonsters TestMod3 for example: https://github.com/Choonster-Minecraft-Mods/TestMod3 Regarding your problem: It would help a lot to know what entity you are trying to add a renderer to and where you put those classes. PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.
September 15, 20178 yr Hey, I use this site/wiki alot: https://wiki.mcjty.eu/modding/index.php/Main_Page And it has a section which could help you: https://wiki.mcjty.eu/modding/index.php/Render_Block_OBJ-1.12 I have not looked further into that topic, but the topics I looked thorugh, helped me alot -Dj
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.