Started by
Zerer
on
Topic category: Help with Minecraft modding (Java Edition)
Hi, I have one question. Can you change the size of mob by coding or another way? I want mob's model to resize, not the hitbox.
Topic category: Help with Minecraft modding (Java Edition)
Hi, I have one question. Can you change the size of mob by coding or another way? I want mob's model to resize, not the hitbox.
Using GL11.glScalef(xScale,yScale,zScale) in its renderer will work.
Omg thanks!!! Now i can make mobs as big as godzilla!
Where is the renderer? I'm asking because I'm working on a mob which will be slightly taller than normal.
@#3 Umm, I think "renderer" is the piece of code.
It took me a little bit of time but to rescale a model add this import
import org.lwjgl.opengl.GL11;
and the line of code that was above
im sorry this was in 2 different comments i pressed enter and it entered my comment
@#6 Where do I paste it?
@#6.1 Paste it under render living but be warned that you can cause block mob collision by doing this I don't know how to fix that so I recommend you scale the mobs on techne
does it also scale the texture?