
dumplings in cutlet
Members-
Posts
36 -
Joined
-
Last visited
Everything posted by dumplings in cutlet
-
I tried to use bdcraft cubik but when I tried to create a texture I proposed to impose on each gransheypa its texture, but I need a complex texture that I used. P.s I need a demon skeleton dragon.
-
I mean UV map, in vanilla minecraft they are not present. Model creator mrcrayfish does not use them, it uses the usual texture for shapes sides. >https://en.wikipedia.org/wiki/UV_mapping
-
[1.9]setUnlocalizedName
dumplings in cutlet replied to dumplings in cutlet's topic in Modder Support
Is your BaseItems class of type Item? I bet not. Yes. -
No, I'm talking about the texture to the model, for example is such a reamer:
-
[1.9]setUnlocalizedName
dumplings in cutlet replied to dumplings in cutlet's topic in Modder Support
I tried this: public BaseItems() { setUnlocalizedName(getRegistryName()); } It did not work. -
I setRegistryName and setUnlocalizedName the same as asking me setRegistryName from *? How to return setUnlocalizedName setRegistryName?
-
hello, scanning for units still relevant?
-
I ask setRegistryName in the constructor of my unit, but I can not use the name to register in a class in which I register blocks. Even if I set the name to register in the class registration, I can not use it. public static Block CACHE_WALL = new BlockCacheWall().setRegistryName("cache_wall"); public static void GameRegistry() { GameRegistry.register(cache_wall); //then an error }
-
[1.8+]Model Editor json format.
dumplings in cutlet replied to dumplings in cutlet's topic in Modder Support
The 1.8 scan texture still relevant? -
[1.8+]Model Editor json format.
dumplings in cutlet replied to dumplings in cutlet's topic in Modder Support
Model Creator create MrCrayfish's Why not use the unfolding textures? Thaumcraft I looked it uses scan texture. This idea MrCrayfish's ? -
Previously used Tabula, now it does not support eksport in json. Model Creator would not create MrCrayfish's unwrap the texture is not very convenient. What editor json models are you using?
-
[1.9.4]meta options and twists
dumplings in cutlet replied to dumplings in cutlet's topic in Modder Support
Then it turns out I can make 12 kinds of blocks? -
[1.9.4]meta options and twists
dumplings in cutlet replied to dumplings in cutlet's topic in Modder Support
As I understand it, I can make a 16 unit types and turns? -
If I create a block to turn: South East West Server (4-way), how many blocks of options I can use? In wool 16 full options. It turns without much I will have options with turns?
-
models/item/Head.json { "parent": "DecorativeExpansion:block/Head" } When I try to register render: Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(Item.getItemFromBlock(block), 0, new ModelResourceLocation(block.getRegistryName(), "inventory")); Everything is rendered as it is necessary, in the hand and in the world. But when I add the options in the render json disappears in the world.
-
I tried to do so: blockstates { "variants": { "normal": { "model": "DecorativeExpansion:Head" }, "facing=south": { "model": "DecorativeExpansion:Head" }, "facing=west": { "model": "DecorativeExpansion:Head", "y": 90 }, "facing=north": { "model": "DecorativeExpansion:Head", "y": 180 }, "facing=east": { "model": "DecorativeExpansion:Head", "y": 270 } } } model { "parent": "block/block", "textures": { "0": "DecorativeExpansion:blocks/spectral_ore" }, "elements": [ { "name": "Cube", "from": [ 7.0, 0.0, 7.0 ], "to": [ 9.0, 4.0, 12.0 ], "faces": { "north": { "texture": "#0", "uv": [ 0.0, 0.0, 2.0, 4.0 ] }, "east": { "texture": "#0", "uv": [ 0.0, 0.0, 5.0, 4.0 ] }, "south": { "texture": "#0", "uv": [ 0.0, 0.0, 2.0, 4.0 ] }, "west": { "texture": "#0", "uv": [ 0.0, 0.0, 5.0, 4.0 ] }, "up": { "texture": "#0", "uv": [ 0.0, 0.0, 2.0, 5.0 ] }, "down": { "texture": "#0", "uv": [ 0.0, 0.0, 2.0, 5.0 ] } } } ] } When I do this: blockstates { "variants": { "normal": { "model": "DecorativeExpansion:Head" } } } It will be like this:
-
What's wrong with my json? blockstates { "variants": { "facing=south": { "model": "DecorativeExpansion:Head" }, "facing=west": { "model": "DecorativeExpansion:Head", "y": 90 }, "facing=north": { "model": "DecorativeExpansion:Head", "y": 180 }, "facing=east": { "model": "DecorativeExpansion:Head", "y": 270 } } } model { "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", "textures": { "0": "DecorativeExpansion:blocks/spectral_ore" }, "elements": [ { "name": "Cube", "from": [ 7.0, 0.0, 7.0 ], "to": [ 9.0, 4.0, 12.0 ], "faces": { "north": { "texture": "#0", "uv": [ 0.0, 0.0, 2.0, 4.0 ] }, "east": { "texture": "#0", "uv": [ 0.0, 0.0, 5.0, 4.0 ] }, "south": { "texture": "#0", "uv": [ 0.0, 0.0, 2.0, 4.0 ] }, "west": { "texture": "#0", "uv": [ 0.0, 0.0, 5.0, 4.0 ] }, "up": { "texture": "#0", "uv": [ 0.0, 0.0, 2.0, 5.0 ] }, "down": { "texture": "#0", "uv": [ 0.0, 0.0, 2.0, 5.0 ] } } } ] }