SuperMartijn642 / Fusion

20 stars 3 forks source link

[Question] Set Parent for 3D Type Blocks #30

Open mouse0270 opened 7 months ago

mouse0270 commented 7 months ago

Question Is it possible to change the parent of the block? For example, lets look at the Bookshelf for my Texture pack, here you can see it looks fine. image

However, when I add a second or 3rd bookshelf using fusion, I get this look: image

Going into the models for the bookshelfs within my texture pack I am working on and setting the config to Appears to fix the issue.

{
    "loader":"fusion:model",
    "type":"connecting",
    "connections":[{"type":"is_same_block"}],
    "parent": "minecraft:block/cube_column",
    "textures": {
        "end": "minecraft:block/slab/oak_top",
        "side": "minecraft:block/bookshelf/1",
        "particle": "minecraft:block/bookshelf/1"
    }
}

image

However, it would be nice if would could specify different parents for different parts of the connected texture to allow texture packs to retain their 3D look if they have them... Or if this is already possible, I was unable to figure out how to get this to work.

SuperMartijn642 commented 7 months ago

I have no clue what you mean. Are you talking about the parent model?

Going into the models for the bookshelfs within my texture pack I am working on and setting the config to Appears to fix the issue.

Also, I think you're missing a word here?

mouse0270 commented 7 months ago

Sorry for not being clear enough. What I mean is it would be nice to be able to define a parent model for different parts of the connected block.

So using my example above it would be nice to have one parent model when the block is a single block, but then have an end block left, end block right and middle block so that I could remove the 3d trim off of the patent blocks and keep a smooth look for the resource pack.

Does that make more sense?