Posted September 2, 201411 yr I have a problem here... (Where do i put the textures?) By the way, im using the following versions: MCP : 908 Forge: forge-1.7.10-10.13.0.1208-src And Eclipse for the scripts... Here are the errors: What appear in the console: http://pastebin.com/shxJ90TP The DogRender Script: http://pastebin.com/mx1E7Ds1 Thanks!
September 2, 201411 yr Not 100% sure if this is completely the problem but at least TRY before posting. @Override protected ResourceLocation getEntityTexture(Entity entity) { // TODO Auto-generated method stub return null; } You're returning nothing for the entity texture, at the top you have a variable called EntityTexture so just return that instead of null
September 2, 201411 yr Author Well, i'm not familiar with the 1.7.10, so i may expecified my texture wrong... If you can help me saying the folder that i may put the texture... Thanks!
September 2, 201411 yr I'm not saying you reference anything wrongly, I'm saying instead of returning the entitytexture in the getEntityTexture method you're returning null (Nothing) which would cause an error. Simply replace "return null;" with "return EntityTexture;"
September 2, 201411 yr Author I tried that, but the same have happen. My Texture Path: C:\Users\Fernando\Desktop\mcp\jars\assets\textures\entity\DogTextureMap.png
September 2, 201411 yr ok so looking at something from my code I have MinecraftInstance.renderEngine.bindTexture(new ResourceLocation("randomutilities", "textures/gui/lunchbox.png")); So you should try something like private static final ResourceLocation EntityTexture = new ResourceLocation("mineplusalpha", "textures/entity/DogTextureMap.png");
September 2, 201411 yr Author Well, now he is a shadow Can you tell me the folder in the mcp folder that are that texture? That may help. Thnx btw
September 2, 201411 yr Author Oh... But where i put the textures? like... the tutorials i have seen are form 1.7.2, and they go to src/assets/textures/mobs. I have not founded the 1.7.10 tutorials... (From mobs)
September 2, 201411 yr There are tons of 1.7 tutorials. You need to set up your workspace properly. Use ForgeGradle. Check out my mod, Realms of Chaos, here. If I helped you, be sure to press the "Thank You" button!
September 2, 201411 yr I always use all lower-case in my resource locations. I don't get these errors since I started doing that. -S- (if I helped, please click Thank and applaud) http://6upnqa.dm2301.livefilestore.com/y2mtf-vG7Tqq1TiiVpIm53KWj7294NDPoHfSHHb4PzZiMAUfRCfK0UY0MwOu7Q3zTBNVTKqWjr2-xgBfFRpQT5p-QivtvknPpoABMNUw9br9WuZcBFkjePhnAbW500gVm-P/sequiturian.png[/img]
September 2, 201411 yr For example: src/main/resources/assets/yourmodname/textures/blocks for blocks src/main/resources/assets/yourmodname/textures/entity for entities etc -TGG
September 2, 201411 yr Author In my folder, i don't have assets, only everything else... is it right?
September 2, 201411 yr Author For example: src/main/resources/assets/yourmodname/textures/blocks for blocks src/main/resources/assets/yourmodname/textures/entity for entities etc -TGG Well, my texture is located in that path, but look, i dont have assets and the name of my mod, only this: src/main/resources/textures/entity/dogskin.png
September 2, 201411 yr Author For example: src/main/resources/assets/yourmodname/textures/blocks for blocks src/main/resources/assets/yourmodname/textures/entity for entities etc -TGG Well, my texture is located in that path, but look, i dont have assets and the name of my mod, only this: src/main/resources/textures/entity/dogskin.png PS: Steel not working btw
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.