Fix decal modulate being passed as srgb instead of as linear color.
This commit is contained in:
parent
99ff024f78
commit
2f0ba1ed3f
1 changed files with 1 additions and 1 deletions
|
@ -2965,7 +2965,7 @@ void TextureStorage::update_decal_buffer(const PagedArray<RID> &p_decals, const
|
||||||
dd.emission_rect[3] = 0;
|
dd.emission_rect[3] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
Color modulate = decal->modulate;
|
Color modulate = decal->modulate.srgb_to_linear();
|
||||||
dd.modulate[0] = modulate.r;
|
dd.modulate[0] = modulate.r;
|
||||||
dd.modulate[1] = modulate.g;
|
dd.modulate[1] = modulate.g;
|
||||||
dd.modulate[2] = modulate.b;
|
dd.modulate[2] = modulate.b;
|
||||||
|
|
Loading…
Reference in a new issue