Hello
I’m using babylon model viewer.
I extend minimal configuration as below
{
"templates": {
"loadingScreen": {
"params": {
"backgroundColor": "#FFFFF"
}
}
},
"scene": {
"clearColor": {
"r": 1,
"g": 1,
"b": 1
}
},
"camera": {
"behaviors": {
"autoRotate": {
"type": 0
},
"framing": {
"type": 2,
"zoomOnBoundingInfo": true,
"zoomStopsAnimation": false
},
"bouncing": {
"type": 0
}
}
},
"engine": {
"antialiasing": true
}
}
With the above configuration, I have model lighting as below
I would like to have the same lighting as the “extended” configuration, but I don’t want to extend the “extended” configuration as I don’t want to use ground, skybox etc. As below, or at least bright model without ambient shadows bottom etc.
I copied lighting configuration variables from the “extended” configuration and copied them into my configuration but unfortunately, it made the lightings darker.
Thank you in advance