Added Is_hurt_color to 1.10.0 render controllers

This commit is contained in:
DaanV2
2021-03-21 15:31:25 +01:00
parent 642717f142
commit 6a7fb21946

View File

@@ -22,7 +22,8 @@
"render_controllers": {
"type": "object",
"propertyNames": { "pattern": "^controller\\.render\\.[a-z\\.]+" },
"additionalProperties": {
"additionalProperties": {
"title": "Render Controller",
"additionalProperties": false,
"type": "object",
"description": "A single render_controller",
@@ -86,6 +87,19 @@
},
"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"
},
"materials": {
"type": "array",
"minItems": 1,
@@ -155,8 +169,7 @@
"title": "Part Visibility"
},
"rebuild_animation_matrices": { "type": "boolean", "description": "TODO description: rebuild animation matrices", "title": "Rebuild Animation Matrices" }
},
"title": "TODO"
}
},
"description": "TODO description: render controllers",
"title": "Render Controllers"