2021-08-22 00:15:58 +02:00
{
2022-06-07 21:39:02 +02:00
"$id" : "blockception.minecraft.behavior.blocks.minecraft.material_instances" ,
2021-08-22 00:15:58 +02:00
"type" : "object" ,
2022-06-07 21:39:02 +02:00
"title" : "Material Instances" ,
2021-08-22 00:15:58 +02:00
"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" ,
2022-07-22 19:41:04 +02:00
"description" : "A single material instance." ,
2021-08-22 00:15:58 +02:00
"additionalProperties" : false ,
"properties" : {
"ambient_occlusion" : {
"title" : "Ambient Occlusion" ,
"type" : "boolean" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-08-22 00:15:58 +02:00
"$comment" : "UNDOCUMENTED"
} ,
"face_dimming" : {
"title" : "Face Dimming" ,
"type" : "boolean" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-08-22 00:15:58 +02:00
"$comment" : "UNDOCUMENTED"
} ,
"render_method" : {
"type" : "string" ,
"title" : "Render Method" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-08-22 00:15:58 +02:00
"$comment" : "UNDOCUMENTED" ,
"enum" : [ "blend" , "opaque" , "alpha_test" ]
} ,
2022-07-22 19:41:04 +02:00
"texture" : { "type" : "string" , "title" : "Texture" , "description" : "UNDOCUMENTED." , "$comment" : "UNDOCUMENTED" }
2021-08-22 00:15:58 +02:00
}
}
} ,
"properties" : { "*" : { "$ref" : "#/definitions/material_instance" } } ,
"additionalProperties" : { "$ref" : "#/definitions/material_instance" }
}