changedInput schema / properties / bg_color / description
Previous value: -"Background color hex for this appearance"New value: +"Background color hex for this appearance (target=fill)"
addedInput schema / properties / blend_mode
Added value: +{
+ "description": "Blend mode for this appearance (target=layer)",
+ "enum": [
+ "normal",
+ "multiply",
+ "screen",
+ "overlay",
+ "darken",
+ "lighten",
+ "color-dodge",
+ "color-burn",
+ "soft-light",
+ "hard-light",
+ "difference",
+ "exclusion",
+ "plus-darker",
+ "plus-lighter"
+ ],
+ "type": "string"
+}
addedInput schema / properties / blur_material
Added value: +{
+ "anyOf": [
+ {
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Blur material for this appearance (target=group)"
+}
addedInput schema / properties / fill_color
Added value: +{
+ "description": "Fill color hex for this appearance (target=layer)",
+ "type": "string"
+}
changedInput schema / properties / group_index / description
Previous value: -"Group index (only for target=group)"New value: +"Group index (for target=group or target=layer)"
addedInput schema / properties / hidden
Added value: +{
+ "description": "Hidden state for this appearance (target=group or target=layer)",
+ "type": "boolean"
+}
addedInput schema / properties / layer_index
Added value: +{
+ "description": "Layer index within the group (required when target=layer)",
+ "type": "number"
+}
changedInput schema / properties / opacity / description
Previous value: -"Group opacity"New value: +"Opacity for this appearance (target=group or target=layer)"
addedInput schema / properties / position_offset_x
Added value: +{
+ "description": "Position X offset for this appearance",
+ "type": "number"
+}
addedInput schema / properties / position_offset_y
Added value: +{
+ "description": "Position Y offset for this appearance",
+ "type": "number"
+}
addedInput schema / properties / position_scale
Added value: +{
+ "description": "Position scale for this appearance",
+ "maximum": 3,
+ "minimum": 0.05,
+ "type": "number"
+}
changedInput schema / properties / shadow_kind / description
Previous value: -"Shadow kind"New value: +"Shadow kind (target=group)"
changedInput schema / properties / shadow_opacity / description
Previous value: -"Shadow opacity"New value: +"Shadow opacity (target=group)"
changedInput schema / properties / specular / description
Previous value: -"Specular for this appearance"New value: +"Specular for this appearance (target=group)"
changedInput schema / properties / target / enum
Previous value: -[
- "fill",
- "group"
-]New value: +[
+ "fill",
+ "group",
+ "layer"
+]
addedInput schema / properties / translucency_enabled
Added value: +{
+ "description": "Enable translucency for this appearance (target=group)",
+ "type": "boolean"
+}
addedInput schema / properties / translucency_value
Added value: +{
+ "description": "Translucency amount for this appearance (target=group)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+}