Hi, I have a script that just changes the rbg values of a color.
It’ really basic.
var color : Color;
function Awake (){
color.r = 120;
}
The value of red is times by 120???
If I put
color.r = 1;
The value is 255.
What’s happening? It used to work…
Cheers, Tim
Happens with all color values.(r b g)