313 lines
10 KiB
JSON
313 lines
10 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "blockception.minecraft.render_controllers.json",
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"title": "Render Controllers 1.8.0",
|
|
"description": "Render_Controllers 1.8.0",
|
|
"required": ["render_controllers", "format_version"],
|
|
"definitions": {
|
|
"color": {
|
|
"anyOf": [
|
|
{
|
|
"type": "number",
|
|
"description": "A color definition as number, between 0 and 1",
|
|
"title": "Color number",
|
|
"minimum": 0,
|
|
"maximum": 1
|
|
},
|
|
{
|
|
"type": "string",
|
|
"description": "A color definition in molang, must result in a float between 0 and 1",
|
|
"title": "Molang color"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"properties": {
|
|
"format_version": {
|
|
"title": "The 1.8.0 format_version",
|
|
"type": "string",
|
|
"pattern": "^1.8.0$",
|
|
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
|
},
|
|
"render_controllers": {
|
|
"type": "object",
|
|
"propertyNames": {
|
|
"pattern": "^controller\\.render\\.[a-z\\.]+"
|
|
},
|
|
"additionalProperties": {
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"title": "Render controller",
|
|
"description": "A single render_controller definition",
|
|
"required": ["geometry", "materials", "textures"],
|
|
"properties": {
|
|
"arrays": {
|
|
"additionalProperties": false,
|
|
"description": "TODO description: arrays",
|
|
"title": "Arrays",
|
|
"type": "object",
|
|
"properties": {
|
|
"geometries": {
|
|
"type": "object",
|
|
"minProperties": 1,
|
|
"propertyNames": {
|
|
"pattern": "^[Aa]rray\\..+"
|
|
},
|
|
"additionalProperties": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^[Gg]eometry\\..+",
|
|
"description": "TODO description: additionalProperties",
|
|
"title": "TODO"
|
|
},
|
|
"description": "TODO description: additionalProperties",
|
|
"title": "TODO"
|
|
},
|
|
"description": "TODO description: geometries",
|
|
"title": "Geometries"
|
|
},
|
|
"materials": {
|
|
"type": "object",
|
|
"minProperties": 1,
|
|
"propertyNames": {
|
|
"pattern": "^[Aa]rray\\..+"
|
|
},
|
|
"additionalProperties": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^[Mm]aterial\\..+",
|
|
"description": "TODO description: additionalProperties",
|
|
"title": "TODO"
|
|
},
|
|
"description": "TODO description: additionalProperties",
|
|
"title": "TODO"
|
|
},
|
|
"description": "TODO description: materials",
|
|
"title": "Materials"
|
|
},
|
|
"textures": {
|
|
"type": "object",
|
|
"minProperties": 1,
|
|
"propertyNames": {
|
|
"pattern": "^[Aa]rray\\..+"
|
|
},
|
|
"additionalProperties": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^[Tt]exture\\..+",
|
|
"description": "TODO description: additionalProperties",
|
|
"title": "TODO"
|
|
},
|
|
"description": "TODO description: additionalProperties",
|
|
"title": "TODO"
|
|
},
|
|
"description": "TODO description: textures",
|
|
"title": "Textures"
|
|
}
|
|
}
|
|
},
|
|
"color": {
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"properties": {
|
|
"r": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"g": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"b": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"a": {
|
|
"$ref": "#/definitions/color"
|
|
}
|
|
},
|
|
"description": "TODO description: color",
|
|
"title": "Color"
|
|
},
|
|
"filter_lighting": {
|
|
"type": "boolean",
|
|
"description": "TODO description: filter lighting",
|
|
"title": "Filter Lighting"
|
|
},
|
|
"geometry": {
|
|
"type": "string",
|
|
"description": "TODO description: geometry",
|
|
"title": "Geometry"
|
|
},
|
|
"ignore_lighting": {
|
|
"type": "boolean",
|
|
"description": "TODO description: ignore lighting",
|
|
"title": "Ignore Lighting"
|
|
},
|
|
"is_hurt_color": {
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"properties": {
|
|
"r": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"g": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"b": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"a": {
|
|
"$ref": "#/definitions/color"
|
|
}
|
|
},
|
|
"description": "TODO description: is hurt color",
|
|
"title": "Is Hurt Color"
|
|
},
|
|
"light_color_multiplier": {
|
|
"$ref": "../../../molang/1.8.0/number.json",
|
|
"description": "TODO description: light color multiplier",
|
|
"title": "Light Color Multiplier"
|
|
},
|
|
"materials": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "string",
|
|
"description": "TODO description: additionalProperties",
|
|
"title": "TODO"
|
|
},
|
|
"description": "TODO description: materials",
|
|
"title": "Materials"
|
|
},
|
|
"description": "TODO description: materials",
|
|
"title": "Materials"
|
|
},
|
|
"on_fire_color": {
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"properties": {
|
|
"r": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"g": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"b": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"a": {
|
|
"$ref": "#/definitions/color"
|
|
}
|
|
},
|
|
"description": "TODO description: on fire color",
|
|
"title": "On Fire Color"
|
|
},
|
|
"overlay_color": {
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"properties": {
|
|
"r": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"g": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"b": {
|
|
"$ref": "#/definitions/color"
|
|
},
|
|
"a": {
|
|
"$ref": "#/definitions/color"
|
|
}
|
|
},
|
|
"description": "TODO description: overlay color",
|
|
"title": "Overlay Color"
|
|
},
|
|
"part_visibility": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"description": "A collection of object that describe which bones are hidden or not",
|
|
"title": "Part visibilty",
|
|
"type": "object",
|
|
"minProperties": 1,
|
|
"additionalProperties": {
|
|
"oneOf": [
|
|
{
|
|
"type": "string"
|
|
},
|
|
{
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"type": "number"
|
|
}
|
|
],
|
|
"description": "Describes which bones are visible or not, can be a string, boolean or number",
|
|
"title": "Part visibilty"
|
|
}
|
|
},
|
|
"description": "TODO description: part visibility",
|
|
"title": "Part Visibility"
|
|
},
|
|
"rebuild_animation_matrices": {
|
|
"type": "boolean",
|
|
"description": "TODO description: rebuild animation matrices",
|
|
"title": "Rebuild Animation Matrices"
|
|
},
|
|
"textures": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"type": "string",
|
|
"description": "TODO description: textures",
|
|
"title": "Textures"
|
|
},
|
|
"description": "TODO description: textures",
|
|
"title": "Textures"
|
|
},
|
|
"uv_anim": {
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"required": ["offset", "scale"],
|
|
"properties": {
|
|
"offset": {
|
|
"type": "array",
|
|
"minItems": 2,
|
|
"maxItems": 2,
|
|
"items": {
|
|
"$ref": "../../../molang/1.8.0/number.json",
|
|
"description": "TODO description: offset",
|
|
"title": "Offset"
|
|
},
|
|
"description": "TODO description: offset",
|
|
"title": "Offset"
|
|
},
|
|
"scale": {
|
|
"type": "array",
|
|
"description": "TODO description: scale",
|
|
"title": "Scale",
|
|
"minItems": 2,
|
|
"maxItems": 2,
|
|
"items": {
|
|
"$ref": "../../../molang/1.8.0/number.json",
|
|
"description": "TODO description: scale",
|
|
"title": "Scale"
|
|
}
|
|
}
|
|
},
|
|
"description": "TODO description: uv anim",
|
|
"title": "Uv Anim"
|
|
}
|
|
}
|
|
},
|
|
"description": "TODO description: render controllers",
|
|
"title": "Render Controllers"
|
|
}
|
|
}
|
|
}
|