[Not a Bug|Java] Grass texture separation

Archive of bug reports that have been completed or locked for various other reasons.
Note: This forum is visibly hidden from users, but is still searchable and readable.
Post Reply 
User avatar
10 Posts
 x 2

Post 01 Oct 2019, 15:39

I noticed that the grass block does not connect well, it does not feel too much, but sometimes it is a bit ugly
You do not have the required permissions to view the files attached to this post.
User avatar
BDcraft Web Admin
6615 Posts
 x 436

Post 01 Oct 2019, 15:47 

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 }
			]
		}
    ]
}
Profile pic by TsaoShin: https://www.deviantart.com/tsaoshin
Post Reply