Added on_fire to render controller 1.10.0
This commit is contained in:
@@ -119,6 +119,11 @@
|
|||||||
"a": { "$ref": "#/definitions/color", "description": "The value of alpha, between 0 and 1", "title": "A" }
|
"a": { "$ref": "#/definitions/color", "description": "The value of alpha, between 0 and 1", "title": "A" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"light_color_multiplier": {
|
||||||
|
"$ref": "../../../molang/1.8.0/number.json",
|
||||||
|
"description": "The amount of light that blends into what is being rendered, lower values gives darker rendering, (1 = 100%)",
|
||||||
|
"title": "Light Color Multiplier"
|
||||||
|
},
|
||||||
"materials": {
|
"materials": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"minItems": 1,
|
"minItems": 1,
|
||||||
@@ -131,6 +136,18 @@
|
|||||||
"description": "TODO description: materials",
|
"description": "TODO description: materials",
|
||||||
"title": "Materials"
|
"title": "Materials"
|
||||||
},
|
},
|
||||||
|
"on_fire_color": {
|
||||||
|
"additionalProperties": false,
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"r": { "$ref": "#/definitions/color", "description": "The value of red, must result in a float between 0 and 1", "title": "R" },
|
||||||
|
"g": { "$ref": "#/definitions/color", "description": "The value of green, must result in a float between 0 and 1", "title": "G" },
|
||||||
|
"b": { "$ref": "#/definitions/color", "description": "The value of blue, must result in a float between 0 and 1", "title": "B" },
|
||||||
|
"a": { "$ref": "#/definitions/color", "description": "The value of alpha, must result in a float between 0 and 1", "title": "A" }
|
||||||
|
},
|
||||||
|
"description": "TODO description: on fire color",
|
||||||
|
"title": "On Fire Color"
|
||||||
|
},
|
||||||
"overlay_color": {
|
"overlay_color": {
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"type": "object",
|
"type": "object",
|
||||||
@@ -143,6 +160,23 @@
|
|||||||
"a": { "$ref": "#/definitions/color", "description": "The value of alpha, between 0 and 1", "title": "A" }
|
"a": { "$ref": "#/definitions/color", "description": "The value of alpha, between 0 and 1", "title": "A" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"part_visibility": {
|
||||||
|
"type": "array",
|
||||||
|
"minItems": 1,
|
||||||
|
"items": {
|
||||||
|
"description": "The object that describe different bone visibility",
|
||||||
|
"title": "Part Visibility",
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": { "oneOf": [{ "type": "string" }, { "type": "boolean" }, { "type": "number" }] }
|
||||||
|
},
|
||||||
|
"description": "TODO description: part visibility",
|
||||||
|
"title": "Part Visibility"
|
||||||
|
},
|
||||||
|
"rebuild_animation_matrices": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "TODO description: rebuild animation matrices",
|
||||||
|
"title": "Rebuild Animation Matrices"
|
||||||
|
},
|
||||||
"textures": {
|
"textures": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"minItems": 1,
|
"minItems": 1,
|
||||||
@@ -174,23 +208,6 @@
|
|||||||
},
|
},
|
||||||
"description": "TODO description: uv anim",
|
"description": "TODO description: uv anim",
|
||||||
"title": "Uv Anim"
|
"title": "Uv Anim"
|
||||||
},
|
|
||||||
"part_visibility": {
|
|
||||||
"type": "array",
|
|
||||||
"minItems": 1,
|
|
||||||
"items": {
|
|
||||||
"description": "The object that describe different bone visibility",
|
|
||||||
"title": "Part Visibility",
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": { "oneOf": [{ "type": "string" }, { "type": "boolean" }, { "type": "number" }] }
|
|
||||||
},
|
|
||||||
"description": "TODO description: part visibility",
|
|
||||||
"title": "Part Visibility"
|
|
||||||
},
|
|
||||||
"rebuild_animation_matrices": {
|
|
||||||
"type": "boolean",
|
|
||||||
"description": "TODO description: rebuild animation matrices",
|
|
||||||
"title": "Rebuild Animation Matrices"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user