Skip to main content

settings_v3_5.json

settings.json Copy Json { "$schema": "http://json-schema.org/draft-04/schema#", "description": "VS/Lotta Settings", "type": "object", ...

Updated over 3 weeks ago

settings.json

Copy Json

{
	"$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", "modo"]
				},
				"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 or modo installation"
						},
						"command": {
							"type": ["string", "null"],
							"description": "render command for blender or modo"
						}
					},
					"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"]
		}
	}
}
Did this answer your question?