Hi guys,
I want to trigger a fadeout effect on the background when my pause modal appears but not totally black, it still has to be seen a bit.
Any ideas ?
Here the modal and elements to slightly fadeOut :
Thank you and sorry for the bad english ~
Hi guys,
I want to trigger a fadeout effect on the background when my pause modal appears but not totally black, it still has to be seen a bit.
Any ideas ?
Here the modal and elements to slightly fadeOut :
Thank you and sorry for the bad english ~
Like this?:
local pauseBg = display.newRect(display.contentCenterX, display.contentCenterY, display.acutalContentWidth, display.acutalContentHeight)
pauseBg:toFront()
pauseBg:setFillColor(0)
pauseBg.alpha = .7
pauseBox:toFront()
Yeah ! That’s a good approach, thanks a lot !
Like this?:
local pauseBg = display.newRect(display.contentCenterX, display.contentCenterY, display.acutalContentWidth, display.acutalContentHeight)
pauseBg:toFront()
pauseBg:setFillColor(0)
pauseBg.alpha = .7
pauseBox:toFront()
Yeah ! That’s a good approach, thanks a lot !