Answers for "unity color rgb"

C#
0

how to change the color of an object in unity c# rgb

void Update ()
             {                         
               if(Input.GetKeyDown(KeyCode.R))
               {                                 
                 gameObject.GetComponent<Renderer>().material.color = new Color(233, 79, 55);
               }             
             }
Posted by: Guest on August-20-2020
0

unity color by rgb

myColor = new Color(red,green,blue);
//where red, green, and blue are float values between 0-255
Posted by: Guest on September-16-2021

C# Answers by Framework

Browse Popular Code Answers by Language