Add custom painting without adding it to the default painting pool?

Started by DigiDuncan on

Topic category: Help with Minecraft modding (Java Edition)

Joined Apr 2013
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Add custom painting without adding it to the default painting pool?

I'd like to add a custom painting pool. The idea is a separate painting item that only pulls painting from my custom options, and that my custom painting don't enter the pool for the default painting item in Minecraft. Is this possible?

Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Totally possible. You'll…
Fri, 09/22/2023 - 03:36

Totally possible. You'll need to design an entity that mimics the behavior of a painting, (which is the tricky part), but you essentially just need to make an entity that drops your item when punched, or if there isn't a wall directly in whicever direction it's facing. Then just make your custom painting item spawn your custom painting entity. This is basically how vanilla paintings work, and shouldn't be too difficult to replicate.