2020-11-25 10:32:34 +01:00
{
"$schema" : "http://json-schema.org/draft-07/schema" ,
2020-11-26 17:00:56 +01:00
"$id" : "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.material_instances" ,
2020-11-25 10:32:34 +01:00
"type" : "object" ,
"title" : "Material instances 1.10.0" ,
"description" : "Maps face or material_instance names in a geometry file to an actual material instance. Material instance can either be a full material instance or a name to another already defined instance" ,
"definitions" : {
"material_instance" : {
"title" : "Material instance" ,
"description" : "A single material instance" ,
"additionalProperties" : false ,
"properties" : {
"ambient_occlusion" : {
"title" : "Ambient occlusion" ,
"type" : "boolean" ,
"description" : "UNDOCUMENTATED"
} ,
"face_dimming" : {
"title" : "Face dimming" ,
2020-11-26 17:00:56 +01:00
"type" : "boolean" ,
2020-11-25 10:32:34 +01:00
"description" : "UNDOCUMENTATED"
} ,
"render_method" : {
"type" : "string" ,
"title" : "Render method" ,
"description" : "TODO description" ,
"enum" : [ "blend" , "opaque" , "alpha_test" ]
} ,
"texture" : {
"type" : "string" ,
"title" : "Texture" ,
"description" : "TODO description"
}
}
}
} ,
"properties" : {
"*" : {
"$ref" : "#/definitions/material_instance"
}
} ,
"additionalProperties" : {
"$ref" : "#/definitions/material_instance"
}
}