Setting RGBA color of a material

There is the tip below - convert your color toLinearSpace (or maybe to GammaSpace depending your specific settings).
Something like
myMat.albedoColor = new BABYLON.Color4(76/255, 91/255, 99/255, 0.8).toLinearSpace();

See also Wrong albedo colors

1 Like