4
Repeating Grass
EDIT
It's fixed!! Thank you so much guys!! Now to just to clean up my texture

Hello!
I'm trying to make the top of the grass blocks a repeating Hexagon. I've got the pattern on the texture but in game I notice the grass blocks must generate in randomized directions when the world loads. Is there a way to make the grass texture actually line up in a repeating pattern and not generate in random directions?
It's fixed!! Thank you so much guys!! Now to just to clean up my texture

Hello!
I'm trying to make the top of the grass blocks a repeating Hexagon. I've got the pattern on the texture but in game I notice the grass blocks must generate in randomized directions when the world loads. Is there a way to make the grass texture actually line up in a repeating pattern and not generate in random directions?
5
If you want to fix this manually you copy the original grass blockstates file from the version you're trying to edit and paste it into your own resource pack, the you edit it.
(example if editing for minecraft 1.17 resource pack you go to -> %appdata% -> .minecraft -> versions -> 1.17 -> assests -> minecraft -> blockstates)
Place that copy of the .json file in your own resource pack (following the same format) and just go into the blockstate file and delete the lines that say
"y" = 90, "y" = 180, "y" = 270 etc.
Make sure you delete the comma after block/ since you will no longer have anymore models and thats it really.
(example if editing for minecraft 1.17 resource pack you go to -> %appdata% -> .minecraft -> versions -> 1.17 -> assests -> minecraft -> blockstates)
Place that copy of the .json file in your own resource pack (following the same format) and just go into the blockstate file and delete the lines that say
"y" = 90, "y" = 180, "y" = 270 etc.
Make sure you delete the comma after block/ since you will no longer have anymore models and thats it really.
Click to reveal
Here's an example with my file for lily pads
"variants": {
"": [
{ "model": "block/lily_pad" },
{ "model": "block/lily_pad", "y": 90 },
{ "model": "block/lily_pad", "y": 180 },
{ "model": "block/lily_pad", "y": 270 }
]
}
}
"variants": {
"": [
{ "model": "block/lily_pad" },
{ "model": "block/lily_pad", "y": 90 },
{ "model": "block/lily_pad", "y": 180 },
{ "model": "block/lily_pad", "y": 270 }
]
}
}
Thank you bro
I got you fam: https://www.mediafire.com/file/zp2mr53vyswqtat/Constant_Grass_Direction_01.zip/file . Simply drag the file into your resource pack folder. (Make sure the resource pack is above all of your other ones in the options menu in-game.) I hope it all works out! :D
If you want to add the same thing to your resource pack, you can look at what I did inside the resource pack file.
If you want to add the same thing to your resource pack, you can look at what I did inside the resource pack file.
Thank you so much!
np
