How i can to change a color of the material of the projector?

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?

Are you sure your material’s variable name for the colour is “Any”? “_Color” is the usual standard that Unity’s built in shaders use.