查看: 647|回复: 0
打印 上一主题 下一主题

[其他] 判断鼠标或者手指是否点击在UI上

[复制链接]

9903

主题

126

听众

7万

积分

首席设计师

Rank: 8Rank: 8

纳金币
53488
精华
316

最佳新人 热心会员 灌水之王 活跃会员 突出贡献 荣誉管理 论坛元老

跳转到指定楼层
楼主
发表于 2016-7-30 21:47:38 |只看该作者 |倒序浏览

使用以下代码即可:
  1. if(Application.platform == RuntimePlatform.Android || Application.platform == RuntimePlatform.IPhonePlayer) {
  2.             if(Input.touchCount>0 && EventSystem.current.IsPointerOverGameObject(Input.GetTouch(0).fingerId)) {
  3.                 return true;
  4.             }
  5.             else
  6.                 return false;
  7.         }
  8.         else {
  9.             if(Input.GetMouseButton(0) && EventSystem.current.IsPointerOverGameObject()) {
  10.                 return true;
  11.             }
  12.             else {
  13.                 return false;
  14.             }
  15.         }
复制代码
  在手机上EventSystem.current.IsPointerOverGameObject()是只检测鼠标左键,加参数是为了在移动设备上检测touch的ID。一般移动设备上第一个触摸为0,但是鼠标左键被UGUI定义为-1。
分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

手机版|纳金网 ( 闽ICP备2021016425号-2/3

GMT+8, 2024-11-17 10:38 , Processed in 0.221509 second(s), 32 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部