Posted October 6, 20159 yr hey all, been searching around, following tutorials etc but I am having a massive issue getting textures and models to work. can do a simple block but anything more complicated breaks, does anyone know of a good program / guide to follow that doesnt break my models / textures? I have tried MC Model editor, model creator, and followed bedrocks tutorials. Thanks.
October 6, 20159 yr Follow this project: https://github.com/TheGreyGhost/MinecraftByExample/tree/master/src/main/java/minecraftbyexample (Note: it has all assets) And page: http://greyminecraftcoder.blogspot.co.at/p/list-of-topics.html 1.7.10 is no longer supported by forge, you are on your own.
October 6, 20159 yr Author Follow this project: https://github.com/TheGreyGhost/MinecraftByExample/tree/master/src/main/java/minecraftbyexample (Note: it has all assets) And page: http://greyminecraftcoder.blogspot.co.at/p/list-of-topics.html I cant find any reference to .json model files in there this is what I have so far that seems to start to work, however I cant figure out while it is saying missing textures. { "textures": { "0": "blocks/barkwall" }, "elements": [ { "name": "Cube", "from": [ 0.0, 0.0, 0.0 ], "to": [ 16.0, 16.0, 3.0 ], "faces": { "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 16.0 ], "cullface": "north" }, "east": { "texture": "#0", "uv": [ 12.0, 0.0, 16.0, 16.0 ], "cullface": "east" }, "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 16.0 ], "cullface": "south" }, "west": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 16.0 ], "cullface": "west" }, "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 3.0 ], "cullface": "up" }, "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 3.0 ], "cullface": "down" } } } ] }
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.