使用Cocos2d怎么實現(xiàn)刮刮卡效果?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
站在用戶的角度思考問題,與客戶深入溝通,找到寶豐網(wǎng)站設計與寶豐網(wǎng)站推廣的解決方案,憑借多年的經驗,讓設計與互聯(lián)網(wǎng)技術結合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站建設、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、申請域名、網(wǎng)絡空間、企業(yè)郵箱。業(yè)務覆蓋寶豐地區(qū)。
本文代碼適用于Cocos2d-x Quick-Community3.6
local TestScene = class("TestScene", function() return display.newScene("TestScene") end) function TestScene:ctor() end function TestScene:onEnter() self:initUI() end function TestScene:initUI() --刮刮卡底層容器 local scratchLayer = display.newLayer() scratchLayer:setContentSize(self:getBoundingBox()) self:addChild(scratchLayer) scratchLayer:setTouchEnabled(true) scratchLayer:setTouchMode(cc.TOUCH_MODE_ONE_BY_ONE) --創(chuàng)建RenderTexture local scratch = cc.RenderTexture:create(scratchLayer:getBoundingBox().width,scratchLayer:getBoundingBox().height) scratch:setPosition(scratchLayer:getBoundingBox().width/2,scratchLayer:getBoundingBox().height/2) scratch:retain() --需要被掛掉的精靈 本文以純白背景代替 local bg = cc.Sprite:createWithTexture(nil, cc.rect(0,0 , scratchLayer:getBoundingBox().width,scratchLayer:getBoundingBox().height)) bg:setColor(cc.c3b(255,255,255)) bg:setPosition(scratchLayer:getBoundingBox().width/2,scratchLayer:getBoundingBox().height/2) --渲染 scratch:begin() bg:visit() scratch:endToLua() scratchLayer:addChild(scratch) --利用DrawNode創(chuàng)建模擬的刮除媒介 local eraser = cc.DrawNode:create() --刮除媒介是個圓 半徑為20 具體可自行定義 local r = 20 eraser:drawSolidCircle(cc.p(0,0), r, 0, r, 1, 1, cc.c4f(0,0,0,0) ) eraser:retain() --開始添加觸摸事件 scratchLayer:addNodeEventListener(cc.NODE_TOUCH_EVENT, function (event) --首先把點擊區(qū)域刮除 eraser:setPosition(event.x,event.y) eraser:setBlendFunc(gl.ONE,gl.ZERO) scratch:begin() eraser:visit() --[[ 重點:因為點擊事件回調次數(shù)限制,如果沒有下面處理, 當我們快速在屏幕上滑動的時候調用次數(shù)不夠,會產生一個一個刮除點 而中間并沒有刮除。 以下代碼為刮除兩次移動中間矩形區(qū)域 ]] local isEnded = false if event.name ~= "began" then if eraser.lastPos then --矩形寬高 local width = self:getP2PDis(event, eraser.lastPos) local height = 2*r --矩形中點 local midPos = cc.p((event.x+eraser.lastPos.x)/2,(event.y+eraser.lastPos.y)/2) --旋轉角度 local rotate = self:getP2PAngle(eraser.lastPos, event) --矩形刮除媒介 local polygonEraser = cc.DrawNode:create() local points = { cc.p(-width/2,-height/2), cc.p(-width/2,height/2), cc.p(width/2,height/2), cc.p(width/2,-height/2) } polygonEraser:drawPolygon(points, { fillColor = cc.c4f(0, 0, 0, 0), borderWidth = 1, borderColor = cc.c4f(0, 0, 0, 0), }) --刮除矩形區(qū)域 polygonEraser:setRotation(-rotate) polygonEraser:setPosition(midPos) polygonEraser:setBlendFunc(gl.ONE,gl.ZERO) polygonEraser:visit() scratch:endToLua() isEnded = true end end if not isEnded then scratch:endToLua() end eraser.lastPos = cc.p(event.x,event.y) if event.name == "ended" then eraser.lastPos = nil end return true end) end --兩點間距 function TestScene:getP2PDis(p1,p2) local x = p1.x - p2.x local y = p1.y - p2.y return math.abs(math.sqrt(math.pow(x,2)+math.pow(y,2))) end --兩點連接線傾斜角度 function TestScene:getP2PAngle(p1,p2) local x = p1.x - p2.x local y = p1.y - p2.y return 180 * (math.atan2(y, x) / math.pi) end return TestScene
關于使用Cocos2d怎么實現(xiàn)刮刮卡效果問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關知識。