const {ccclass, property} = cc._decorator;
@ccclass
export default class NewClass extends cc.Component {
holdTimeEclipse = 0; //用来检测长按
holdClick = false; //用来检测点击
doubleTimeEclipse = 0; //用来检测双击
hold_one_click = 0; //用来检测单击
// LIFE-CYCLE CALLBACKS:
onLoad () {
this.node.on(cc.Node.EventType.TOUCH_START,function(event){
this.holdClick = true;
this.holdTimeEclipse = 0;
},this);
this.node.on(cc.Node.EventType.TOUCH_END,function(event){
this.holdClick=false;
if(this.holdTimeEclipse>=30)
{
this.btn_status('long');
}
else
{
this.btn_status('short');
}
//开始记录时间
this.holdTimeEclipse=0;
},this);
}
btn_status(status){
if(status == 'short')
{
console.log(this.hold_one_click)
this.hold_one_click ++;
setTimeout(() => {
if(this.hold_one_click == 1)
{
console.log('short');
this.hold_one_click = 0;
}
else if(this.hold_one_click == 2)
{
console.log('double');
this.hold_one_click = 0;
}
}, 400);
}
else
{
this.hold_one_click = 0;
console.log(status);
}
}
start () {
}
update (dt) {
if(this.holdClick)
{
this.holdTimeEclipse++;
if(this.holdTimeEclipse>120)//如果长按时间大于2s,则认为长按了2s
{
this.holdTimeEclipse=120;
}
}
}
}
cocos creator:短按、长按、双击
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 偶然发现,用过一些,分享给大家 { "XcodeChaJian": [ { "Dname":"...
- 2017 年度码云热门项目排行榜 TOP 50 出炉啦!我们根据所有开源项目在码云的用户关注度、活跃度、访问量等信...