#Need help pls
1 messages · Page 1 of 1 (latest)
I looked a lot and couldn't understand the error
I swear it worked before
Trueeee??? Orr?!
Are you getting any content log errors?
Content log errors show up in game, not in the pack. Turn the content log in the creator settings and load the world. It should show some error messages if there are any. You can press ctrl+h to see any you got since you last opened up mc
Uh
Im mobile player
@compact jasper Ummm
I don't quite understand what the problem is
That means the game doesn't recognize the textures in thr array you put on the render controller
Did you send the whole rp file for your mooshroom?
If you did, try copy and pasting the vanilla one, and then adding your baby textures
As you need the whole vanilla file for entities
what should I do?
Like I said, copy and paste the vanilla file into your pack
Then add your textures and render controller to it
I don't mean the textures
Ohh vanilla code
Yeah
Can you send the full render controller and client entity file you have now?
Okey
{
"format_version": "1.8.0",
"render_controllers": {
"controller.render.mooshroom": {
"geometry": "Geometry.default",
"arrays": {
"textures": {
"Array.skins": [
"Texture.default",
"Texture.brown"
],
"Array.Xskins": [
"Texture.baby_default",
"Texture.baby_brown"
]
}
},
"textures": [
"query.is_baby ? Array.Xskins[query.variant] : Array.skins[query.variant]"
]
}
}
}
{
"format_version": "1.8.0",
"minecraft:client_entity": {
"description": {
"identifier": "minecraft:mooshroom",
"textures": {
"baby_default": "textures/entity/cow/baby_mooshroom",
"baby_brown": "textures/entity/cow/baby_brown_mooshroom"
}
}
}
}
Yeah, you need more than that for the client entity. You need the whole vanilla code for it to work. You also need your new textures in thr textures object
So what do we do if we have vanilla codes but they don't work?
It's because you modified the render controller in your pack as well. You need the vanilla code and your textures listed in it for it to work
baby_default and baby_brown aren't defined in the vanilla code, so you need to define them
But if you dont include the rest of the vanilla code, it will not look like a vanilla mooshroom. Minecraft also might not read it, which is what happened to you
Glad to hear it!
Thank you very much, I tried so hard for this but I couldn't succeed.