My app has a background that shows the camera feed as seen on this post:
http://coronalabs.com/blog/2013/12/19/holiday-surpril-time-effects/
But I also need to record this object when the user taps the record button…
local shape = display.newRect( 0, 0, 320, 480 ) shape.anchorX = 0 shape.anchorY = 0 shape.fill = { type="camera" } shape.fill.effect = "filter.scatter" shape.fill.effect.intensity = 0.5
Any thoughts??