• Welcome to MCME!

    Minecraft Middle Earth is a Minecraft community that recreates the world described by JRR Tolkien and his writings. Everyone can participate in organized events in which we collaborate to create major landmarks, terrain, caves, castles, towns, farms and more.

    To get started, visit The New Player Guide

    Joining the server

    Joining the server can be done straight away, but you will have to pass the New Player Quiz. Use the The New Player Guide to get acquainted with our community.

    IP: build.mcmiddleearth.com

  • Did you know you can upload your screenshots to your own Media section?.You can get ratings and comments on the uploaded material!

Improved Sandstone Bricks

Eriol_Eandur

Head of Plugin Development
Staff member
Vala
Moderator
Supporter
Credits
0
XP
66
Hey,

@Thijs1801 asked me to fix a glitch at our sandstone brick block. The different faces of the block don't match to each other. In the lower layer there are two stones separates in the middle of the block whereas at the upper layer there are on all faces single stones. If you use bricks to stack a wall on two faces (e.g. east and west) the two separate stones should be in upper layer.
Additionally the top and bottom faces don't fit at all to the sides.
I made a new block model and textures to fix this:
Code:
{
    "parent": "block/cube",
    "textures": {
        "particle":"blocks/sandstone_normal",
        "up": "blocks/sandstone_top",
        "north": "blocks/sandstone_normal",
        "south": "blocks/sandstone_normal",
        "west": "blocks/sandstone_normal_alt",
        "east": "blocks/sandstone_normal_alt"
    },
    "elements": [
        {   "from": [ 0, 0, 0 ],
            "to": [ 16, 16, 16 ],
            "faces": {
                "down":  { "texture": "#up", "rotation": 270, "cullface": "down" },
                "up":    { "texture": "#up", "rotation": 180, "cullface": "up" },
                "north": { "texture": "#north", "cullface": "north" },
                "south": { "uv": [ 16, 0, 0, 16], "texture": "#south", "cullface": "south" },
                "west":  { "texture": "#west", "cullface": "west" },
                "east":  { "uv": [ 16, 0, 0, 16], "texture": "#east", "cullface": "east" }
            }
        }
    ]
}

top and bottom face texture:
full

east and west face texture:
full


full

full
full

As you see at the ingame images this makes a very big difference at the upper and lower side.

Ofc I could leave the upper and lower texture unchanged, it probably doesn't matter to much that it does not fit to the sides well.

I would be happy about some feedback here. Especially about the upper side. Change it to be more realistic or leave it as it looks better for floors? Does it look better for floors?
 
I think both is true. It will look better as a block, but at the same time the new upper side doesnt fit for floors so well.
Why not have both advantages and use one of our new blockstates for a sandstone floorblock or something like that... :)
 
We don't even need to use new block states as there are some other sandstone blocks (smooth and chiseled) which could be used for floors with the current upper block face.

We could even have a third kind of sandstone floor one for each of the sandstone blocks. With changing block models we have so many new possibilities to improve the old blocks. And it is quite simple an quickly done to edit a block model file.
 
In order to keep things simple I'd rather only use one variant rather than having two easily confused variants... I think your fixed variant could look quite good for floor actually :D
 
Top