About Create
youfeng11 opened this issue · 10 comments
Don't use the trinket slots, they are not supported(might work on Fabric, but not on forge).
Don't use the trinket slots, they are not supported(might work on Fabric, but not on forge).
@tr7zw the goggles interfering with view also happens with regular slots, so it's a bit annoying.
may I kindly ask for you to add a head rendering toggle on configuration, so we can disable the entire head being rendered, and thus remove this interference?
much thanks.
also waiting for a workaround/fix for this. maybe an option to just disable rendering of everything in trinket slots would be a bandaid?
Trinkets dont render the normal way, thats why it doesn't work in the first place. Currently no short-term plans to fix Trinket stuff since there are just too many trinket mods all over the place and between versions(currently just don't have the time/interest in looking into it).
okay no problem, ill tinker around with setting the goggles model to nothing with a resource pack or maybe some kind of mod like cosmetic armor to hide it
It will probably require hooking each possible trinket mod for forge, fabric, all their iterations, and forks to get this right. Since they don't seem to use the mod loaders API, don't attach the thing to the actual body part and ignore it when the body part is invisible. It's just a massive pain.
@youfeng11 @sombrae so the bandaid fix i found for create goggles specifically is to make a resourcepack (or just add to one), create these directories: "RESOURCE PACK\assets\create\models\block", and in this folder create goggles.json which contains:
{
"credit": "Made with Blockbench",
"parent": "block/block",
"textures": {
"0": "create:block/brass_casing",
"1": "block/black_stained_glass",
"2": "create:item/goggles_model",
"particle": "create:block/brass_casing"
},
"elements": []
}
Downside is you won't see your goggles on your skin even in third-person, but atleast you can wear them without getting in the way.
@909oce man youre a lifesaver. i love you.
also @909oce sorry to necro, but can i ask the logic of that bandaid, or how did you do it? because I found another trinket that interferes with this first person mod (vinery's straw hat), and would like to be able to make my own bandaids too.