HI:)
defaultPipeline.samples = 4; // 1 by default
After applying this line, the colors of the application assets were inverted, how can I fix this?
In this case, the 3d model is displayed normally
Thanks in advance for your help )
Hey unfortunately we will need a repro to help here
1 Like
The problem was solved by setting the HDR parameter to false.
var defaultPipeline = new BABYLON.DefaultRenderingPipeline (
“DefaultRenderingPipeline”,
false, // is HDR?
scene
scene.cameras
);
1 Like