Page 1 of 1

Transparency Issues!

Posted: 14 Jan 2017, 23:32
by Creatos
Hey,

Is there a way to fix the folowing?
There should be stuff inside the transparent window... But it doesn't show up! :(
Image

Re: Transparency Issues!  [Solved]

Posted: 15 Jan 2017, 09:24
by Sphax
It's a Minecraft rendering issue. An item model is rendered in one draw call which does not guarantee the rendering order of polygons.

You can maybe try to move transparent elements to the bottom (or top) of elements list and reexport.

You can try doing that directly in JSON btw

Re: Transparency Issues!

Posted: 15 Jan 2017, 10:32
by Creatos
Sphax wrote: 15 Jan 2017, 09:24 It's a Minecraft rendering issue. An item model is rendered in one draw call which does not guarantee the rendering order of polygons.

You can maybe try to move transparent elements to the bottom (or top) of elements list and reexport.

You can try doing that directly in JSON btw
Thanks bud!
It worked, now it isn't invisible anymore and it looks way better! :)

Image

Re: Transparency Issues!

Posted: 15 Jan 2017, 19:20
by Sphax
Cool! :)
So you moved transparent parts at end to make it work?

Re: Transparency Issues!

Posted: 16 Jan 2017, 16:31
by Creatos
Sphax wrote: 15 Jan 2017, 19:20 Cool! :)
So you moved transparent parts at end to make it work?
Yes that worked! Ty very much!