Can you resize mob?

Started by Zerer on

Topic category: Help with modding (Java Edition)

Last seen on 09:22, 21. Jan 2023
Joined Jul 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Can you resize mob?

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.

Last seen on 17:17, 10. Jan 2024
Joined Aug 2013
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Using GL11.glScalef(xScale
Thu, 07/27/2017 - 09:43

Using GL11.glScalef(xScale,yScale,zScale) in its renderer will work.

Last seen on 09:22, 21. Jan 2023
Joined Jul 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Omg thanks!!! Now i can make
Thu, 07/27/2017 - 10:28

Omg thanks!!! Now i can make mobs as big as godzilla!

Last seen on 11:43, 6. Dec 2018
Joined Oct 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Where is the renderer? I'm
Fri, 07/28/2017 - 16:17

Where is the renderer? I'm asking because I'm working on a mob which will be slightly taller than normal.

Last seen on 09:22, 21. Jan 2023
Joined Jul 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:Where is the renderer? I'm
Sat, 07/29/2017 - 07:48

@#3 Umm, I think "renderer" is the piece of code.

Last seen on 22:02, 16. Aug 2022
Joined Jul 2017
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
It took me a little bit of
Sat, 07/29/2017 - 16:54

It took me a little bit of time but to rescale a model add this import 

Last seen on 22:02, 16. Aug 2022
Joined Jul 2017
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
import org.lwjgl.opengl.GL11;
Sat, 07/29/2017 - 16:55

import org.lwjgl.opengl.GL11;

Last seen on 22:02, 16. Aug 2022
Joined Jul 2017
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
and the line of code that was
Sat, 07/29/2017 - 16:56

and the line of code that was above

im sorry this was in 2 different comments i pressed enter and it entered my comment 

Last seen on 11:43, 6. Dec 2018
Joined Oct 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:and the line of code that was
Sat, 07/29/2017 - 18:16

@#6 Where do I paste it?

Last seen on 22:02, 16. Aug 2022
Joined Jul 2017
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:RE:and the line of code that was
Sun, 07/30/2017 - 04:02

@#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

Last seen on 02:32, 23. Jan 2022
Joined Feb 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
does it also scale the…
Sat, 08/22/2020 - 01:38

does it also scale the texture?