How to make a block that alternates textures during time?

Started by notsureofagood… on

Topic category: Help with Minecraft modding (Java Edition)

Joined Nov 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How to make a block that alternates textures during time?

To be more specific, id like to make leaves that have a certain fruit, and they would change textures as they grow, then, at the final state, you would be able to collect it and it would turn back into normal leaves.

Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You would either need to do…
Mon, 12/11/2023 - 12:22

You would either need to do a lot of messing around with custom coding, NBT tags, and blockstates; or just make multiple different versions of the block with different textures, and replace the block with the next version whenever the flowers grow. (Which has the added benefit of specifying different properties for different stages of the plant.) That's usually how I do crops.