Hi, I want to change the shadow color trackball values.
ShadowsMidtonesHighlights shadowsMidtonesHighlights;
if (volume.profile.TryGet<ShadowsMidtonesHighlights>(out tempShadowsMidtonesHighlights))
{
shadowsMidtonesHighlights = tempShadowsMidtonesHighlights;
}
shadowsMidtonesHighlights.shadowsStart.min = 0f;
shadowsMidtonesHighlights.shadowsEnd.min = 0.3f;
//Im not sure how to define the shadow Vector4 color values
shadowsMidtonesHighlights.shadows.value = new Vector4(1.2f, 1.2f, 1.0f, 0f);
How do i actually set the vector 4 values. I dont understand the range . As in the above picture the range is 1.87…1.80…1.59
I want to set different values for every level in my game. I want the range to be 0.97…0.91…0.7. And so on, different values for different levels.
Thanks in advance !