首页 文章 精选 留言 我的

精选列表

搜索[屏幕阅读器],共8149篇文章
优秀的个人博客,低调大师

[Unity3d for android]屏幕触摸事件

移动物体: [csharp] view plain copy usingUnityEngine; usingSystem.Collections; publicclassexample:MonoBehaviour{ publicfloatspeed=0.1F; voidUpdate(){ if(Input.touchCount>0&&Input.GetTouch(0).phase==TouchPhase.Moved){ Vector2touchDeltaPosition=Input.GetTouch(0).deltaPosition; transform.Translate(-touchDeltaPosition.x*speed,-touchDeltaPosition.y*speed,0); } } } 点击碰撞克隆 [csharp] view plain copy usingUnityEngine; usingSystem.Collections; publicclassexample:MonoBehaviour{ publicGameObjectprojectile; voidUpdate(){ inti=0; while(i<Input.touchCount){ if(Input.GetTouch(i).phase==TouchPhase.Began) clone=Instantiate(projectile,transform.position,transform.rotation)asGameObject; ++i; } } } =================== [csharp] view plain copy usingUnityEngine; usingSystem.Collections; publicclassexample:MonoBehaviour{ publicGameObjectparticle; voidUpdate(){ inti=0; while(i<Input.touchCount){ if(Input.GetTouch(i).phase==TouchPhase.Began){ Rayray=Camera.main.ScreenPointToRay(Input.GetTouch(i).position); if(Physics.Raycast(ray)) Instantiate(particle,transform.position,transform.rotation)asGameObject; } ++i; } } } TouchPhaseEnumeration Describes phase of a finger touch. Values Began A finger touched the screen. Moved A finger moved on the screen. Stationary A finger is touching the screen but hasn't moved. Ended A finger was lifted from the screen. This is the final phase of a touch. Canceled The system cancelled tracking for the touch, as when (for example) the user puts the device to her face or more than five touches happened simultaneously. This is the final phase of a touch. 本文转蓬莱仙羽51CTO博客,原文链接:http://blog.51cto.com/dingxiaowei/1366234,如需转载请自行联系原作者

资源下载

更多资源
Mario

Mario

马里奥是站在游戏界顶峰的超人气多面角色。马里奥靠吃蘑菇成长,特征是大鼻子、头戴帽子、身穿背带裤,还留着胡子。与他的双胞胎兄弟路易基一起,长年担任任天堂的招牌角色。

腾讯云软件源

腾讯云软件源

为解决软件依赖安装时官方源访问速度慢的问题,腾讯云为一些软件搭建了缓存服务。您可以通过使用腾讯云软件源站来提升依赖包的安装速度。为了方便用户自由搭建服务架构,目前腾讯云软件源站支持公网访问和内网访问。

Nacos

Nacos

Nacos /nɑ:kəʊs/ 是 Dynamic Naming and Configuration Service 的首字母简称,一个易于构建 AI Agent 应用的动态服务发现、配置管理和AI智能体管理平台。Nacos 致力于帮助您发现、配置和管理微服务及AI智能体应用。Nacos 提供了一组简单易用的特性集,帮助您快速实现动态服务发现、服务配置、服务元数据、流量管理。Nacos 帮助您更敏捷和容易地构建、交付和管理微服务平台。

WebStorm

WebStorm

WebStorm 是jetbrains公司旗下一款JavaScript 开发工具。目前已经被广大中国JS开发者誉为“Web前端开发神器”、“最强大的HTML5编辑器”、“最智能的JavaScript IDE”等。与IntelliJ IDEA同源,继承了IntelliJ IDEA强大的JS部分的功能。

用户登录
用户注册