Hi somebody please help me.
I just want to remove the color I have set to an object through the code
“cornea.renderer.material.color=Color.blue;”
How is it possible to remove the blue color without affecting the texture of object.
Thank you.
Set it back to whatever it was before you changed it to blue… at a guess:
cornea.renderer.material.color = Color.white;
What tanoshimi said.
Colors in unity are multiplied, and so white is actually default colours, and not pure white like this webpage.