How can I decrease opacity in unity?

55,821

Solution 1

For those who might still come across this question, gameObject.GetComponent<Renderer> ().material.color is not a variable. Create a variable as such:

var trans = 0.5f;
var col = gameObject.GetComponent<Renderer> ().material.color;

Then assign your value:

col.a = trans;

Also be aware that not all shaders have a _Color property. In my case, I had to use:

var col = gameObject.GetComponent<Renderer> ().material.GetColor("_TintColor");

Solution 2

How I can use:

gameObject.GetComponent<Renderer> ().material.color.a = 0;

As you already stated in your own question, the object you call this on must have a shader which supports transparency. In Unity5, when using the standard shader, you must explicitly set it to "Transparent" to be able to manipulate the alpha value. enter image description here

It should also be clear to you that the alpha value is a float which goes from 0.0f to 1.0f, so e.g. setting

gameObject.GetComponent<Renderer> ().material.color.a = 0.5f;

will make the object 50% transparent.

Share:
55,821
Admin
Author by

Admin

Updated on May 27, 2020

Comments

  • Admin
    Admin about 4 years

    I see this subject in stack over flow but I think it is false Making an object 'transparent' so it cannot be seen is not the most efficient way to do things. What you rather want to do is make the renderer inactive when you don't want to see it, and active when you do.

    If you click on your gameObject in the editor, there should be a Mesh Renderer as one of the components.

    To set it to inactive from a script attached to this same gameObject, you can do this...

    gameObject.GetComponent<Renderer> ().enabled = false;
    

    If you really want to use transparency, you can do this...

    gameObject.GetComponent<Renderer> ().material.color.a = 0;
    

    Although if you are setting transparency, you need to make sure the shader the material is using supports transparency. I would suggest using the Legacy Shaders/Transparent Diffuse shader.

    How I can use:

    gameObject.GetComponent<Renderer> ().material.color.a = 0;