#Trying to customize model from Mods

27 messages · Page 1 of 1 (latest)

rain cedar
#

I'm trying to import and customize models in mod such as Epic Fight Mods weapons to use them on BBS mod for animation.

flat tartanBOT
#
Welcome to the help forum!

Please make sure to read #1029373817119838218 as it may answer your question!

Once your question has been resolved, please mark the post as closed by using the </close:1163944441741049897> command.

polar mesa
#

unless they are in a readable format inside the assets folder of the mod's .jar file (when opened with any zip program) there is no way feasible way to get them afaik unfortunately (besides asking the mod creator)

rain cedar
polar mesa
#

if the mod file doesn't have them as .json models included, yes

rain cedar
rain cedar
polar mesa
rain cedar
polar mesa
# rain cedar

k, the reason Blockbench can't load that is cause it's using forge specific syntax to have different models for different displays

#

but in general both the GUI and the model in hand are just an extruded texture

#

So you can just do File > Import > Extruded Texture and load the item texture from the mod (extracted into a normal folder first ofc)

polar mesa
#

yes

#

actually, if it's for another mod you can just copy whatever is in "base" for your copy of the model

#

So like

{
    "parent": "item/generated",
    "textures": {
        "layer0": "epicfight:item/uchigatana"
    },
    "display": {
        "thirdperson_righthand": {
            "rotation": [0, -90, 55],
            "translation": [0, 13, -1.5],
            "scale": [1.7, 1.7, 0.85]
            },
        "thirdperson_lefthand": {
            "rotation": [0, 90, -55],
            "translation": [0, 13.25, -1.75],
            "scale": [1.7, 1.7, 0.85]
        },
        "firstperson_righthand": {
            "rotation": [0, -90, 25],
            "translation": [1.13, 9.2, 1.13],
            "scale": [1.7, 1.7, 0.85]
        },
        "firstperson_lefthand": {
            "rotation": [0, 90, -25],
            "translation": [1.13, 9.2, 1.13],
            "scale": [1.7, 1.7, 0.85]
        },
        "head":{
            "rotation":[0,180,0],
            "translation":[0,13,7]
        }
    }
}```
polar mesa
#

yeah, idk what that one requires or how you use item models in that one to animate them

rain cedar
polar mesa
rain cedar
#

ahh I see i see

#

Thank you so much for helping me!

rain cedar
#

I even put it in a different folder, and it doesn't show at all

polar mesa
rain cedar
#

ahh I see