all graphics settings by code

hi all!
I wish set all the quality graphics settings (like shadows, anisotropic, etc…) by code, and also dump these data to debug my application to my testers…
is there a list, guide to do this?
thanks

Is this what you’re looking for?

for example:

// Disable all anisotropic filtering

QualitySettings.anisotropicFiltering = AnisotropicFiltering.Disable;

or:

// Set AntiAliasing to use 2x Multisampling

function Start()
{
    QualitySettings.antiAliasing = 2;
}

Could you explain that a little bit?

thanks @DennG ! I’ll try to test some settings!

1 Like