醒着☆☆

H5 Laya Native Game

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: :: 管理 ::

长按Press 判断

private float _longClickDuration = 2f;
float _lastPress = -1f;
void OnPress(bool pressed) 

if (pressed) 
_lastPress = Time.realtimeSinceStartup; 
else 

if (Time.realtimeSinceStartup - _lastPress > _longClickDuration) 
DoLongPress(); 

}

posted on 2015-06-16 19:05  醒着/☆☆  阅读(219)  评论(0编辑  收藏  举报