light_area_properties_v3_15.json
Point light properties
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Point light properties",
"type": "object",
"properties": {
"position": {
"type": "array",
"items": {
"type": "number"
},
"minItems": 3,
"maxItems": 3
},
"rotation": {
"type": "array",
"items": {
"type": "number"
},
"minItems": 3,
"maxItems": 3,
"description": "Angles on X, Y & Z in degrees"
},
"enabled": {
"type": "boolean"
},
"color": {
"type": "array",
"items": {
"type": "integer",
"minimum": 0,
"maximum": 255
},
"minItems": 3,
"maxItems": 3
},
"intensity": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"castshadow": {
"type": "boolean"
},
"show3dobject": {
"type": "boolean"
},
"width": {
"type": "number",
"minimum": 0
},
"height": {
"type": "number",
"minimum": 0
},
"square": {
"type": "boolean"
},
"distance": {
"type": "number",
"minimum": 0,
"maximum": 100
}
}
}