Answers for "unity how to set color with r,g,b values"

C#
1

new Color from hex in unity

Color greenColor;
ColorUtility.TryParseHtmlString("#0AC742", out greenColor);
Posted by: Guest on December-01-2020
2

new color unity

Color color = new Color(red,green,blue,alpha)//Alpha 0 is transparent
Posted by: Guest on November-14-2020

Code answers related to "unity how to set color with r,g,b values"

C# Answers by Framework

Browse Popular Code Answers by Language