Hello, I am trying to figure out how I can control an individual dynamic light’s shadow resolution quality setting in script.
A bit late, buuuuut:
Shadow resolutions are controlled by integers, so if you want to change try this:
//Very High = 3
//High = 2
//Medium = 1
//Low = 0
QualitySettings.shadowResolution = (ShadowResolution)2;