Horje
How to make game object transparent in unity Code Example
How to make game object transparent in unity
GameObject g;

// 50% Transparency.
g.renderer.material.color.a = 0.5f; // a is the alpha value.

 // 100% Transparency.
g.renderer.material.color.a = 1.0f;




Csharp

Related
return array in c# Code Example return array in c# Code Example
togl unity Code Example togl unity Code Example
integer required asp.net core Code Example integer required asp.net core Code Example
how to make a string a list of characters c# Code Example how to make a string a list of characters c# Code Example
update table in C# Code Example update table in C# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8