Unity gradient broken in 4.5.5

Hi all -

This link shows creating a gradient in unity. Works great: in 4.5.4. In 4.5.5p2 through p5 it works in the editor but not on an ios or android device. The colors are blended instead to a solid color.

Anyone else seen this or know a way around? I’ll be looking myself.

Thanks

Set the color format directly works.

    Texture2D gradient = new Texture2D(h, v,TextureFormat.ARGB32,false);

Thanks