- Home /
Question by
martijn-vegas · Mar 08, 2015 at 01:33 AM ·
gameobjecthalo
Changing color Halo in unity 5 (Scripting)
Hi,
I've seen this question asked before, but I cannot find the color change value of the Halo. When I asked the properties of the halo in the gameObject, i don't see any color data that can be changed.
Component PointHalo = PointHaloSmall.GetComponent("Halo");
_PropertyInfo[] properties = PointHalo.GetType().GetProperties();
foreach( _PropertyInfo p in properties)
{
Debug.Log(p.Name);
}
Comment
O$$anonymous$$ , for some unspecified reason Halo isn't available for scripting, as an alternative, use a light ins$$anonymous$$d and set it to "Area Light".
Your answer

Follow this Question
Related Questions
using Contains(gameObject) to find and destroy a gameObject from a list 2 Answers
Using raycast to "collide" with tagged objects & enable Halo Component 2 Answers
Text on Models 1 Answer
Rubber material 0 Answers
Gameobject follow cursor 2D 0 Answers