Unity Color Set Alpha

[Solved] Unity Color Set Alpha | C - Code Explorer | yomemimo.com
Question : unity color set alpha

Answered by : forest

//much like Vector3, individual pieces of a color cannot be changed
//but you can create a temporary color with the same values but a different alpha
image.color = new Color(image.color.r, image.color.g, image.color.b, 1f);

Source : | Last Update : Thu, 25 Nov 21

Answers related to unity color set alpha

Code Explorer Popular Question For C