Page 1 of 1

[Not a Bug|Java] Grass texture separation

Posted: 01 Oct 2019, 15:39
by KilerZombie23
I noticed that the grass block does not connect well, it does not feel too much, but sometimes it is a bit ugly

Re: Grass texture separation

Posted: 01 Oct 2019, 15:47 
by HanFox
This is a choice Sphax made to give it a more random look without adding more textures.

If you don't like it you can edit /assets/minecraft/blockstates/grass_block.json and replace the contents with:

Code: Select all

{
    "multipart": [
		{
			"when": { "snowy": "false" },
			"apply": [
				{ "model": "block/_bdc/grass_block_01", "weight": 40 },
				{ "model": "block/_bdc/grass_block_02", "weight": 40 },
				{ "model": "block/_bdc/grass_block_03", "weight": 40 },
				{ "model": "block/_bdc/grass_block_04", "weight": 40 },
				{ "model": "block/_bdc/grass_block_05", "weight": 40 },
				{ "model": "block/_bdc/grass_block_06", "weight": 40 }
			]
		},
		{	"apply": { "model": "block/_bdc/grass_block_bottom" } },
		{
			"when": { "snowy": "false" },
			"apply": [
				{ "model": "block/_bdc/blank",	"weight": 160 },
				{ "model": "block/_bdc/grass_overlay_01", "weight": 2 },
				{ "model": "block/_bdc/grass_overlay_02", "weight": 1 }
			]
		},
		{
			"when": { "snowy": "true" },
			"apply": [
				{ "model": "block/_bdc/grass_block_snow_01", "weight": 40 },
				{ "model": "block/_bdc/grass_block_snow_02", "weight": 40 },
				{ "model": "block/_bdc/grass_block_snow_03", "weight": 40 },
				{ "model": "block/_bdc/grass_block_snow_04", "weight": 40 },
				{ "model": "block/_bdc/grass_block_snow_05", "weight": 40 },
				{ "model": "block/_bdc/grass_block_snow_06", "weight": 40 }
			]
		}
    ]
}