Sunbeams not appearing on device

Gurus,

   I’m having a problem with the “sunbeams” fill effect showing up on a device. The effect shows up fine in the simulator but not on a Samsung Galaxy Tab 3 (SMT-T310). The project is also using the “marching ants” stroke effect without any problems, but sunbeams are invisible.

I searched the forums but did not see any relevant posts. Here’s the code. Any assistance would be appreciated. 

 object = display.newCircle( 100, 100, 30 ) object.fill.effect = "generator.sunbeams" object.fill.effect.posX = 0.5 object.fill.effect.posY = 0.5 object.fill.effect.aspectRatio = 1 object.fill.effect.seed = 1 object.alpha = 1

That shader requires high precision shader support. See: https://docs.coronalabs.com/guide/graphics/effects.html#support

Rob

That was the problem. Thanks for pointing out this limitation at the bottom of the effects documentation. I’ll be sure to avoid these high precision shaders.

That shader requires high precision shader support. See: https://docs.coronalabs.com/guide/graphics/effects.html#support

Rob

That was the problem. Thanks for pointing out this limitation at the bottom of the effects documentation. I’ll be sure to avoid these high precision shaders.