Hi i need help with turning on/off post processing layer via script.
Here is script for turning on/off fog/vignette etc. but how can i turn on/off full PPP/PPL?
Thanks for help.
[SerializeField]
PostProcessingProfile CC;
if (Input.GetKeyDown(KeyCode.Mouse1))
{
CC.vignette.enabled = true;
CC.chromaticAberration.enabled = true;
↧