Started by
Sleppi
on
Topic category: Troubleshooting, bugs, and solutions
With new blockbench v4.11.2 and geckolib plugin for blockbench v4.0 my item display settings doesn't work. It renders like purple and black cube. But old geckolib display settings imported in previous versions for blocks works properly. I use Mcreator 2024.3 and Nerdy's geckolib v5.9.3. How can I fix this or what I need to do
I would recommend reporting the bug to the plugin directly as this way it is more likely for them to notice it and fix it
I had the same problem recently and I managed to find a solution. What i did was very simple, i compered two display settings, one was alright and the other had this problem. I noticed that the one that was alright had two differences: it had
{
"credit": "Made with Blockbench",
"parent": "builtin/entity",
while the bugged had only
{
"credit": "Made with Blockbench",
Futhermore, the good one hadn't a script that the bugged had (as i erased it, i don't remember exactly, but it was something related to particles). I removed it and put it exactly as the one that was alright. Sorry for bad english, but i hope it end your problem as mine.
Thanks, it helped me too here how to fix it for everybody who has the same problem
Bugged version has:
{
"texture_size": [
128,
128
],
and you need to add this to this code:
{
"credit": "Made with Blockbench",
"parent": "builtin/entity",
"texture_size": [
128,
128
],
And you need to delete this code from your model item distplay settings and a comma behind it
"textures": {
"particle": "electrosimplicity:block/BlockBreaker"
}