더블 클릭 판단
4861 단어 판단
onTouchesEnded:function(touches, event) {
var touchOne =touches[0];
var str = touchOne.getPreviousLocation().x + "
" + touchOne.getLocation().x;
this._logLabel.setString(str);
if (Math.abs(touchOne.getDelta().x) <=6 && Math.abs(touchOne.getDelta().y) <=6 ) {
var bigger = cc.ScaleBy.create(3, 2); //
var smaller = bigger.reverse(); //
this._ship.runAction(cc.Sequence.create(bigger,smaller));
}
},
방법2: 더블 클릭만 판정
onTouchesEnded:function(touches, event) {
var touchOne =touches[0];
var str = " :" + "
"
+ this._lastTouchPos.x + "
"
+ this._lastTouchPos.y + "
"
+ " :" + "
"
+ touchOne.getLocation().x + "
"
+ touchOne.getLocation().y + "
"
this._posLabel.setString(str);
// , ,
if (Math.abs(cc.pDistance(touchOne.getLocation(),this._lastTouchPos)) < 20) {
this.onCaptainSkill(null);
}
else {
this._lastTouchPos = touchOne.getLocation();
}
},
onTouchesMoved:function (touches, event) {
this._posLabel.setString(" ");
this._lastTouchPos = cc.p(0,0);
this.processEvent(touches[0]);
},
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
자바 판단 오늘, 어제, 그저께, 초 간격으로 할 수 없는 간단한 실례인스턴스는 다음과 같습니다. 이상의 자바 판단은 오늘, 어제, 그저께, 초 간격으로 할 수 없는 간단한 실례가 바로 편집자가 여러분에게 공유한 모든 내용입니다. 여러분께 참고가 되고 저희를 많이 사랑해 주시기 바랍니...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.