Translations:Modding:Content Tutorial Simple Block/19/en
From Vintage Story Wiki
For blocks to use a certain texture, then it must specify this within its json file. Replace your current blocktype json with the following:
{
"code": "simplegoldblock",
"creativeinventory": { "general": [ "*" ] },
"drawtype": "Cube",
"texture": {
"base": "block/shinygoldtexture"
}
}
Two new properties have been added: drawtype and texture.