From b722b01cde6a67955fc59ef045a8ce609494c3ca Mon Sep 17 00:00:00 2001 From: DaanV2 Date: Thu, 13 May 2021 13:41:42 +0200 Subject: [PATCH] Added on_fire to render controller 1.10.0 --- .../1.10.0/render_controllers.json | 51 ++++++++++++------- 1 file changed, 34 insertions(+), 17 deletions(-) diff --git a/source/resource/render_controllers/1.10.0/render_controllers.json b/source/resource/render_controllers/1.10.0/render_controllers.json index 0ad40d9b..1d0d8f72 100644 --- a/source/resource/render_controllers/1.10.0/render_controllers.json +++ b/source/resource/render_controllers/1.10.0/render_controllers.json @@ -119,6 +119,11 @@ "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": { "type": "array", "minItems": 1, @@ -131,6 +136,18 @@ "description": "TODO description: 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": { "additionalProperties": false, "type": "object", @@ -143,6 +160,23 @@ "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": { "type": "array", "minItems": 1, @@ -174,23 +208,6 @@ }, "description": "TODO description: 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" } } },