Fixed corner renders for face
Corner sides on the face were not rendering correctly and is not fixed.
This commit is contained in:
parent
7ab1c657f5
commit
48aa0a82fc
1 changed files with 17 additions and 1 deletions
|
@ -130,13 +130,28 @@ public class ModelTankSide extends ModelBase
|
|||
topSiding.render(f5);
|
||||
topRightOut.render(f5);
|
||||
topLeftOut.render(f5);
|
||||
|
||||
if (right)
|
||||
{
|
||||
rightTopSide.render(f5);
|
||||
}
|
||||
if (left)
|
||||
{
|
||||
leftTopSide.render(f5);
|
||||
}
|
||||
}
|
||||
if (!bot)
|
||||
{
|
||||
botSiding.render(f5);
|
||||
botRightOut.render(f5);
|
||||
botLeftOut.render(f5);
|
||||
if (right)
|
||||
{
|
||||
rightBotSide.render(f5);
|
||||
}
|
||||
if (left)
|
||||
{
|
||||
leftBotSide.render(f5);
|
||||
}
|
||||
}
|
||||
if (!right)
|
||||
{
|
||||
|
@ -148,6 +163,7 @@ public class ModelTankSide extends ModelBase
|
|||
if (top)
|
||||
{
|
||||
topRightOut.render(f5);
|
||||
|
||||
}
|
||||
if (bot)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue