您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何在CocosCreator中使用游戲手柄,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
由原先的mouse系列的轉(zhuǎn)換為touch系列的
touchstart 觸摸按下,相當(dāng)于 mousedown
touchmove 觸摸移動,相當(dāng)于 mousemove
touchend 觸摸抬起,相當(dāng)于 mouseup
touchcancel 觸摸取消,被其他事件終止,相當(dāng)于按下了ESC鍵
當(dāng)觸摸按下隨推動位置變化(要用世界坐標(biāo)轉(zhuǎn)換),觸摸抬起后回歸原位(直接設(shè)定0,0坐標(biāo)默認(rèn)相對坐標(biāo))。
setPosition()設(shè)定的為相對父節(jié)點(diǎn)的坐標(biāo)
onTouchMove(e:cc.Event.EventTouch){ // e.getLocation() 為點(diǎn)擊的位置,是世界坐標(biāo) // 需要把世界坐標(biāo)轉(zhuǎn)換為本地坐標(biāo) let parent=this.node.parent;// 父節(jié)點(diǎn) (圓形底盤) let pos:cc.Vec2=parent.convertToNodeSpaceAR(e.getLocation()); this.node.setPosition(pos); } onTouchCancel(){ this.node.setPosition(cc.v3(0,0,0)); }
使用方位角來定位邊緣位置。pos.normalize()方法返回該點(diǎn)相對于(0,0)的(cos, sin),返回Vec2對象。
let parent=this.node.parent;// 父節(jié)點(diǎn) (圓形底盤) let pos:cc.Vec2=parent.convertToNodeSpaceAR(e.getLocation()); // 該點(diǎn)所在的方位 (cos, sin) let direction:cc.Vec2=pos.normalize(); // 限制在邊界之內(nèi) let maxR = 100-20; //點(diǎn)擊的點(diǎn)到托盤中央的距離 let r : number = cc.Vec2.distance(pos, cc.v2(0,0)); if( r > maxR) { pos.x = maxR * direction.x; pos.y = maxR * direction.y; } // cc.log("相對位置: " + pos.x + ", " + pos.y); this.node.setPosition( pos);
cc.Node.angle
表示旋轉(zhuǎn)的角度,逆時(shí)針為正
官方建議不要使用 cc.Node.rotationa.signAngle( b)
a和b為兩個向量,返回值是一a,b的夾角 (弧度值)
radian = a.signAngle(b)
(1) a位于b的順時(shí)針方向:角度為正
(2) a位于b的逆時(shí)針方向:角度為負(fù)
旋轉(zhuǎn)實(shí)現(xiàn):
添加屬性 car :cc.Node=null;獲取小車節(jié)點(diǎn)。
cc.find()注意參數(shù)用"/"除號的斜杠,否則識別不到
onLoad () { this.car=cc.find("Canvas/小車"); }
let radian=pos.signAngle(cc.v2(1,0));//計(jì)算點(diǎn)擊位置與水平的夾角 let ang=radian/Math.PI*180;//弧度制轉(zhuǎn)換為角度值 this.car.angle=-ang;//逆時(shí)針為正,所以這里要調(diào)整至順時(shí)針
在小車的腳本中添加前進(jìn)的動畫,update(dt)方法中讓x和y每幀加對應(yīng)的速度在x和y軸的分量。
在手柄控制腳本中獲取小車節(jié)點(diǎn)下的腳本。通過上面獲取的direction的方向角,傳入小車腳本中。通過控制direction來控制小車的移動。
小車運(yùn)動腳本
direction: cc.Vec2 = null; speed: number = 3; onLoad() { } start() { } update(dt) { if (this.direction == null) return; //靜止 let dx = this.speed * this.direction.x; let dy = this.speed * this.direction.y; let pos = this.node.getPosition(); pos.x += dx; pos.y += dy; this.node.setPosition(pos); }
手柄控制腳本
car: cc.Node = null; carscript: cc.Component = null; // LIFE-CYCLE CALLBACKS: onLoad() { this.car = cc.find("Canvas/小車"); this.carscript = this.car.getComponent("CarMove"); } start() { this.node.on('touchstart', this.onTouchStart, this); this.node.on('touchmove', this.onTouchMove, this); this.node.on('touchend', this.onTouchCancel, this); this.node.on('touchcancel', this.onTouchCancel, this); } onTouchStart() { } onTouchMove(e: cc.Event.EventTouch) { // e.getLocation() 為點(diǎn)擊的位置,是世界坐標(biāo) // 需要把世界坐標(biāo)轉(zhuǎn)換為本地坐標(biāo) // let parent=this.node.parent;// 父節(jié)點(diǎn) (圓形底盤) // let pos:cc.Vec2=parent.convertToNodeSpaceAR(e.getLocation()); // this.node.setPosition(pos); let parent = this.node.parent; // 父節(jié)點(diǎn) (圓形底盤) let pos: cc.Vec2 = parent.convertToNodeSpaceAR(e.getLocation()); // 該點(diǎn)所在的方位 (cos, sin) let direction: cc.Vec2 = pos.normalize(); // 限制在邊界之內(nèi) let maxR = 100 - 20; let r: number = cc.Vec2.distance(pos, cc.v2(0, 0)); if (r > maxR) { pos.x = maxR * direction.x; pos.y = maxR * direction.y; } // cc.log("相對位置: " + pos.x + ", " + pos.y); this.node.setPosition(pos); let radian = pos.signAngle(cc.v2(1, 0)); //計(jì)算點(diǎn)擊位置與水平的夾角 let ang = radian / Math.PI * 180; //弧度制轉(zhuǎn)換為角度值 this.car.angle = -ang; //逆時(shí)針為正,所以這里要調(diào)整至順時(shí)針 this.carscript.direction = direction; } onTouchCancel() { this.node.setPosition(cc.v3(0, 0, 0)); //將方向置空,使汽車停止 this.carscript.direction = null; } // update (dt) {}
最終效果
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“如何在CocosCreator中使用游戲手柄”這篇文章對大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。