Models in addons [RESOLVED]

Started by Nessymixj on

Topic category: Help with modding (Bedrock Edition)

Last seen on 15:39, 27. Oct 2021
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Models in addons [RESOLVED]
Wed, 10/06/2021 - 17:07 (edited)

Hello, i don't know how to add a model in my bedrock addon, can you help me ? (i already have the model and texture) 

Thanks for your responses !

Edited by Nessymixj on Wed, 10/06/2021 - 17:07
Last seen on 19:52, 29. Jun 2023
Joined Sep 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
are you using blockbench?
Tue, 10/05/2021 - 12:13

are you using blockbench?

Last seen on 19:52, 29. Jun 2023
Joined Sep 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
or a mcreator painted texure
Tue, 10/05/2021 - 12:14

or a mcreator painted texure

Last seen on 04:28, 26. Jan 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
on blockbench make sure to…
Tue, 10/05/2021 - 16:27

on blockbench make sure to export it as a Bedrock Model

Last seen on 15:39, 27. Oct 2021
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Yes i'm using blockbench and…
Wed, 10/06/2021 - 10:21

Yes i'm using blockbench and my texture was created on blockbench too. i just don't know how to put my model on a mob created on mcreator...

Last seen on 04:28, 26. Jan 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
go to resources, click…
Wed, 10/06/2021 - 14:54

go to resources, click Models, and import it, unless addons are different.

Last seen on 15:39, 27. Oct 2021
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
but how can i add models in…
Wed, 10/06/2021 - 14:56

but how can i add models in ressources ? There is 0 buttons for add models

Last seen on 15:39, 27. Oct 2021
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
i found the button for add…
Wed, 10/06/2021 - 14:59

i found the button for add the model, but it's locked :/

Last seen on 04:28, 26. Jan 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
then Models don't work for…
Wed, 10/06/2021 - 15:07

then Models don't work for addons on MCreator

Last seen on 15:39, 27. Oct 2021
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
there is no other solution…
Wed, 10/06/2021 - 15:08

there is no other solution to add a model on a mcreator mob ?

Last seen on 04:28, 26. Jan 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
if MCreator locked the…
Wed, 10/06/2021 - 16:05

if MCreator locked the button, then custom code

Last seen on 15:39, 27. Oct 2021
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
it's what i'm trying but i…
Wed, 10/06/2021 - 16:15

it's what i'm trying but i have another problem, i don't why but when i run minecraft, it closes instantly :/ so i'm checking if i don't have virus or other thing like this...

Last seen on 04:28, 26. Jan 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
just use Bridge
Wed, 10/06/2021 - 16:21

just use Bridge

Last seen on 15:39, 27. Oct 2021
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I FOUND IT !!!!!!!!!!…
Wed, 10/06/2021 - 16:51

I FOUND IT !!!!!!!!!! FINALLY !!!

Ok, so i'll explain for those who have the same problem than me.

Create a folder called "models" in your ressource pack and in this folder create another folder called "entity", in this folder put your model.json (for example my model is called duck.geo.json)

Go to your ressource pack and open the entity folder and open the mob.entity (with notepad or just like a normal txt file)

Now found in the code "geometry", and read this :

 "geometry": {
        "default": "geometry.duck"

 }

The geometry.duck you will found it in your model file, here :

            "description": {
                "identifier": "geometry.duck",
                "texture_width": 64,
                "texture_height": 32,
                "visible_bounds_width": 2,
                "visible_bounds_height": 2.25,
                "visible_bounds_offset": [0, 0.875, 0]
            }, 

 Rename the text you have after "identifier" like you want but it must be the same words in the mob.entity file.

 

Now start minecraft !

 

I hope it will help you ;)

 

(for the discussion, when I'll can, I'll try bridge but thanks for your help !)

Last seen on 04:28, 26. Jan 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
that sounds cool, you might…
Wed, 10/06/2021 - 16:57

that sounds cool, you might want to make a Tutorial Page with images just for that :)