another question
How to i set gradient to sprite?
i did follow steps
create color gradient called "myColor"
add stop point at 0 with value rgbEX(255,0,0)
add stop point at 1 with value rgbEX(0,255,0)
Now how to apply this gradient in Sprite
i tried with expression AdvancedRandom.Gradient()
but it only requires numbers in the ()
if i gave it 0 it gave color rgbEX(255,0,0) and if i gave it 1 then rgbEX(0,255,0)
how do i give sprite gradient?