When i use this method:
public void SetCircleColor(Color color)
{
if (initialized == false)
{
Projector.material = new Material(Projector.material);
Projector.material.name += "(Copy)";
}
Projector.material.color = color;
}
Project do not project the material. If using
Projector.material.SetColor("Any", color);
it not work.
What am i doing wrong?