how to apply image effect to entire group

Hi

Tried to apply image effects to group object. But there is no easy way to do that. In the example code(bellow) applied blur effect on images. I want to apply one more effects to group object. How can i solve this? Thanks.
 

local group = display.newGroup()

local img1 = display.newImage(group,“i1.png”)

img1.x,img1.y = 160,240

img1.fill.effect = “filter.blur”

local img2 = display.newImage(group,“i1.png”)

img2.x,img2.y = 160,240

img2.fill.effect = “filter.blur”

–group.fill.effect = “filter.blur”

local function onEveryFrame( event )

    img1.rotation = (img1.rotation + 5) % 360

    img2.rotation = (img2.rotation + -5) % 360

end

Runtime:addEventListener( “enterFrame”, onEveryFrame )
 

Hi @0f7bb4d0,

Applying filters to a group of objects is normally done by creating a snapshot object and applying the filter to that. However, snapshots are a premium graphics feature available only to Pro and Enterprise users, so you’d need to upgrade to that tier to use them.

Best regards,

Brent

Trying to apply filters to physic objects. Is snapshot supports nonstatic objects?

Hi @0f7bb4d0,

Applying filters to a group of objects is normally done by creating a snapshot object and applying the filter to that. However, snapshots are a premium graphics feature available only to Pro and Enterprise users, so you’d need to upgrade to that tier to use them.

Best regards,

Brent

Trying to apply filters to physic objects. Is snapshot supports nonstatic objects?