help with a rideable mob

Started by FyrfyX8 on

Topic category: Help with modding (Java Edition)

Last seen on 14:41, 17. Apr 2021
Joined May 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
help with a rideable mob

I use the plugin 1.12.2 generator for 2020.3 and i make for me a mod. but there is a problem i have a mob that is rideable but im sittin in the air how can i fix tha

 

im riding in the air how can i fix it?

Last seen on 05:29, 31. Jan 2022
Joined Nov 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
mcreator can't do anything…
Wed, 07/15/2020 - 18:59

mcreator can't do anything about that for now, if you want to ride lower you will need to code.

i suggest you submit a feature request in the Issue Tracker. but in the mean time if you're fine with coding, override the getMountedYOffset() method in your little ridable entity's class like this:

@Override
public double getMountedYOffset() {
    return 0.5D;
}
    

change the 0.5D to whatever height you want.

i suggest you submit a…
Thu, 07/16/2020 - 16:36

i suggest you submit a feature request in the Issue Tracker.

This feature is supported by 1.14.4+, issues for 1.12.2 should not be opened on the tracker. Rather pull request with a fix should be provided by the user in interest to the repository.

Last seen on 05:29, 31. Jan 2022
Joined Nov 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
hmm, i tried to create a mob…
Thu, 07/16/2020 - 17:42

hmm, i tried to create a mob (2020.3/1.15.2) with the ridable boxes checked but i don't see where you can set the mounted Y offset. where is it?

Last seen on 21:12, 25. Jul 2022
Joined Jul 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
It's on the first page of…
Mon, 08/03/2020 - 21:39

It's on the first page of the entity, right next to the bounding box and shadow sizes.

Last seen on 23:56, 6. Feb 2021
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You have to change the mob's…
Thu, 10/08/2020 - 01:31

You have to change the mob's hit box (entity model bounding box) on the first page of mob creator dialog.