I’m using this code:
...
"color": {
"start": {
"kind": "RANDOM_BETWEEN",
"values": [
[1, 0.5, 0.0, 0.9],
[0.0, 0.5, 1, 0.9]
]
}
},
...
But the color of the particles are always the average of the two values… The above code values were purposely extremes to test if I was going crazy or not. But the result is always (with that values) gray.
The only way to change color that I found is working is through the over_lifetime_r(or g/b/a).
Edit:
It is not always the average. With that same color setting, I got a pink color, which I’m guess would be around the color (1,0.5,0.5).
But it is still not randomizing the colors, just the first one, then all the others are coping the same color.