Viewer config format
Current format:
{
"modelPath":"path/to/xml"
"instrumentPosition":{"x":0,"y":0,"z":0},
"minDeltaTime":20,
"numberOfLights":0,
"lightsPos":[],
"lightsParams":[],
"ambientLight":0.2,
}
New format:
{
"model": {
"path":"path/to/xml",
"position":{"x":0,"y":0,"z":0},
"rotation":{
"axis":{"x":0,"y":0,"z":1},
"angle":90
},
"lods":[10, 100]
},
"collision": {
"modelPath":"path/to/xml",
"margin":0.04,
"debugGUI":false
},
"camera": {
"position": {"x":0,"y":0,"z":10}
},
"minDeltaTime":20,
"lights":{
[{"position":{"x":20,"y":30,"z":10}, "color":16777215,"intensity":1,"reach":525,"visible":true}]
},
"ambientLight":0.2
}