How can I decrease opacity in unity?

为君一笑 提交于 2019-12-10 10:58:10

问题


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;

回答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");



回答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.

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.




回答3:


Try in this way

var other : GameObject;
other.renderer.material.color.a = 0.5f; // 50 % transparent
other.renderer.material.color.a = 1.0f; // 100% visible


来源:https://stackoverflow.com/questions/32415545/how-can-i-decrease-opacity-in-unity

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!