Answers for "unity c sharp how to change transparency of object"

C
1

unity change transparency script

public GameObject gameObject;

//gameObject.GetComponent<Renderer>().material.color = new Color(r, g, b, a);
//gameObject.GetComponent<Renderer>().material.color = new Color(255.0f, 255.0f, 255.0f, 0.0f);
gameObject.GetComponent<Renderer>().material.color = new Color(255.0f, 255.0f, 255.0f, 100.0f);
Posted by: Guest on August-27-2021
1

unity transparent object

//For 2D sprites :
public GameObject myObject;

public void makeTransparent()
{
  var col = myObjetc.GetComponent<SpriteRenderer>().color;
  col.a = 0.5f; //Change the value of transparency here (with 0 = totally transparent and 1 = not transparent at all)
  myObjetc.GetComponent<SpriteRenderer>().color = col;
}

//For 3D gameObjects :
I think you have to use shaders there are a lot of youtube videos it is not only with a script
Posted by: Guest on April-18-2021

Code answers related to "C"

Browse Popular Code Answers by Language