伪造mod块纹理1.12

问题描述 投票:0回答:1

我在Minecraft中创建了一个新块,但在1.12中它给我一个加载纹理的新错误

[12:00:20] [main/ERROR] [FML]: Exception loading model for variant 
chestadd:chestone#facing=west for blockstate 
"chestadd:chestone[facing=west]"
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: 
Exception loading model chestadd:chestone#facing=west with loader 
VariantLoader.INSTANCE, skipping
... 
Caused by: net.minecraft.client.renderer.block.model.
ModelBlockDefinition$MissingVariantException

我的资产。{MODID} .blockstates

{
    "variants": {
        "normal": {
            "model": "chestadd:chestone"
        }
    }
}

我的资产。{MODID} .models.block

{
    "parent": "block/cube",
    "textures": {
        "down": "chestadd:blocks/ChestOneBottom",
        "up": "chestadd:blocks/ChestOneTop",
        "north": "chestadd:blocks/ChestOne1",
        "east": "chestadd:blocks/ChestOne2",
        "south": "chestadd:blocks/ChestOne3",
        "west": "chestadd:blocks/ChestOne4"
    }
}

还有我的资产。{MODID} .models.item

{
    "parent": "chestone:block/chestone"
}
java minecraft forge minecraft-forge
1个回答
0
投票

"chestadd:blocks/ChestOneBottom"

Assets must be all lower case.

© www.soinside.com 2019 - 2024. All rights reserved.