settings_v3_28.json
VS/Lotta Settings
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "VS/Lotta Settings",
"type": "object",
"properties": {
"laser_finish": {
"type": "boolean"
},
"ray_trace": {
"type": "object",
"properties": {
"renderer": {
"enum": [
"vray",
"blender"
]
},
"local": {
"type": [
"object",
"null"
],
"properties": {
"engine": {
"enum": [
"cpu",
"gpu"
],
"description": "relevant only for vray on windows"
},
"path": {
"type": [
"string",
"null"
],
"description": "the path to blender installation"
},
"command": {
"type": [
"string",
"null"
],
"description": "render command for blender"
}
},
"required": [
"engine",
"path",
"command"
]
},
"remote": {
"type": [
"object",
"null"
],
"properties": {
"service": {
"enum": [
"bw_render_cloud",
"render_street"
]
},
"path": {
"type": [
"string",
"null"
],
"description": "the path to blender when render_street is selected"
},
"username": {
"type": [
"string",
"null"
],
"description": "username used when render_street is selected"
},
"password": {
"type": [
"string",
"null"
],
"description": "for security reasons, password is not exposed through the api, you can use set function to set it though"
}
},
"required": [
"service",
"path",
"username",
"password"
]
}
},
"required": [
"renderer",
"local",
"remote"
]
},
"high_precision_textures_3d": {
"type": "boolean",
"description": "Enable high precision textures for the 3D Unreal and Unreal Lite display paths for the current session."
}
}
}