- Home /
Question by
alek123 · Sep 08, 2013 at 09:23 AM ·
c#gameobjectimage effectsglow
Glow single Object
Hi Guys I have problem with Glowing. I need to glow only one object. I read that glow work on ALPHA so I set ALPHA to 0 on object with one must be without glow but it didn't work.
Color color1 = renderer.material.color;
color1.a = 0f;
gameObject.transform.renderer.material.color = color1;
Someone know where is problem ? I use GLOW EFFECT script from UNITY PRO. Thanks for help :)
PS. How to make light without glow ?
Comment
Answer by ivan2532 · Jan 24, 2014 at 10:38 PM
Hi alek123, you can just attach the Bloom effect on your game object, and there you go. Good luck!
All the best, Ivan
In Unity 4.6 if you add Bloom to a game object it will also attach a camera to that game object. Bloom is intended for an entire scene (as for all the other Image Effects). So the way you are describing is not an the answer alek123 is looking for.