How would i make a fully 3d block, but not a full block?

Started by ModManOnCurseForge on

Topic category: Help with modding (Java Edition)

Last seen on 01:26, 4. Oct 2024
Joined Sep 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How would i make a fully 3d block, but not a full block?

I want to make multiple blocks that are kind of 3d, like a want to make my custom mob drop a custom mob head of itself but i don't know how to. I only know how to make full blocks with the same texture on each side. Could someone tell me how i would be able to make a custom mob head? like one that would be from the twilight forest mod.

Last seen on 23:43, 3. Oct 2024
Joined Dec 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
That'd require a custom…
Thu, 10/03/2024 - 23:39

That'd require a custom block model.

Last seen on 00:59, 4. Oct 2024
Joined Sep 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Would you be able to baby me…
Fri, 10/04/2024 - 00:59

Would you be able to baby me through it XD

Last seen on 01:15, 4. Oct 2024
Joined Dec 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
you can use this, model.json…
Fri, 10/04/2024 - 01:09

you can use this, model.json

{
    "elements": [
        {
            "from": [4, 0, 4],
            "to": [12, 8, 12],
            "color": 2,
            "faces": {
                "north": {"uv": [0, 0, 8, 8], "texture": "#missing"},
                "east": {"uv": [0, 0, 8, 8], "texture": "#missing"},
                "south": {"uv": [0, 0, 8, 8], "texture": "#missing"},
                "west": {"uv": [0, 0, 8, 8], "texture": "#missing"},
                "up": {"uv": [0, 0, 8, 8], "texture": "#missing"},
                "down": {"uv": [0, 0, 8, 8], "texture": "#missing"}
            }
        }
    ]
}
Last seen on 01:26, 4. Oct 2024
Joined Sep 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
...i dont know how that…
Fri, 10/04/2024 - 01:27

...i dont know how that works :|