when I put this in
blur = GameObject.FindGameObjectsWithTag(“MainCamrera”).GetComponent();
it gives GetComponent(); will not work!
Thx for the help!
when I put this in
blur = GameObject.FindGameObjectsWithTag(“MainCamrera”).GetComponent();
it gives GetComponent(); will not work!
Thx for the help!
You need something like:
GameObject.FindGameObjectWithTag("MainCamera").GetComponent<Blur>();