Hi
I'm using Unity Indie 2.6.1 and have following code:
function Start () {
var c = Color(Random.value,Random.value,Random.value,1);
renderer.material.color = c;
}
If I've understood the documentation correctly this should also work with a particle renderer but I have no reaction at all. It works without any problems with a mesh renderer.
Does anybody have a suggestion what could be the problem?
Thank You!