Answers for "how to change the color of an object in unity c# 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

Code answers related to "how to change the color of an object in unity c# rgb"

C# Answers by Framework

Browse Popular Code Answers by Language