엘프에게 바인딩 클릭 이벤트
var touchedSprite = cc.Sprite.extend({
_touchBegan : null,
onEnter : function(){
this.initWithFile('res/CloseNormal.png');
//
cc.registerTargetedDelegate(0, true, this);
this.setAnchorPoint(0.5, 0.5);
this._touchEnabled=true;
this._super();
},
touchRect:function(){
return this.getBoundingBoxToWorld();
},
onTouchBegan : function(touches, event){
var rect = this.touchRect();
var point = touches.getLocation();
if(cc.rectContainsPoint(rect, point)){
cc.log('touch began');
this.clickAction();
this._touchBegan = true;
}
return true;
},
onTouchEnded : function(touches, event){
if(this._touchBegan){
this._touchBegan = false;
cc.log('touch end')
}
},
onTouchMoved : function(touches, event){
this.setPosition(touches.getLocation());
},
clickAction : function(){
var big = cc.ScaleTo.create(0.5, 2, 2);
var small = cc.ScaleTo.create(0.5, 1, 1);
var actionArray = new Array(big, small);
var seq = cc.Sequence.create(actionArray);
this.runAction(cc.RepeatForever.create(seq));
}
});
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.