Posted June 5, 20214 yr I made a custom entity that (for now) uses the iron golem model and texture. But I want my entity to be around 3x bigger than the normal iron golem. So I tried matrixStack.scale(f, f, f), but that has an issues. It does work, but my entity glitches out, so sometime it is the regular size of an iron golem, but sometimes is really big (depending on the angle you look at it from). Here is my code: https://paste.ee/p/Uv9Kg thanks for help.
June 6, 20214 yr try adding MatrixStack#push (before your render code) and MatrixStack#pop (after your render code): matrixStack.push(); your code matrixStack.pop();
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.