Washed out 3d model in r112

Hi, I’m trying to update three.js from r111 to r112. My 3d model appears washed out when using r112. Please take a look here: Live Example - JSFiddle.
Change 111 to 112 (or greater) to see the issue. Any ideas on how to resolve this?

The renderer.outputEncoding parameter used in your code was introduced in r112, so it won’t have any effect in r111. It looks like your 3D Model contains vertex colors that are sRGB rather than linear, so you’ll need to either convert the vertex colors or leave outputEncoding at its default value, LinearEncoding.

2 Likes

Thank you so much! Removing renderer.outputEncoding worked for me.