Hello, I made Point light.
I set intensity to 1.0 I want to ask you how to make script which will
set intensity to 1.50 when First Character controller will be near the Point light.
How to do that?
I know that I can use Tag to do it but I don’t know how.
You can attach a collider set as a trigger on the light object and use OnTriggerEnter/Exit to determine if the player is inside, or you can use Vector3.Distance with the player and light positions and adjust the light accordingly