this won’t compile:
var color = Color (0.88, 0.90, 1.0, 0.0);
var alphaStep : float = 0.05;
function Update ()
{
color.a += alphaStep;
SetColors = (color, color);
}
according to the API doc SetColors requires 2 arguments color start color end.
This will compile only with 1 i.e. SetColors = (color); has something changed?