欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

Unity实现手机摇一摇震动

时间:2021-01-09 11:15:17|栏目:.NET代码|点击:

在手机经常使用摇一摇这种操作方式,在unity中也可以实现震动,iPhone与Android的函数不一样,在ios中用的函数为iPhoneUtils.Vibrate()在Android中函数为Handheld.Vibrate();

具体代码:

using UnityEngine;
using System.Collections;
 
public class FunctionVibrate : MonoBehaviour
{
 //实现手机晃动震动效果
 // Use this for initialization
 float old_y = 0;
 float new_y;
 float max_y = 0;
 float min_y = 0;
 float d_y = 0;
 public float distance = 0.3f;
 void Start () {
 
 }
 
 // Update is called once per frame
 void Update () {
 
 new_y = Input.acceleration.y;
 d_y = new_y - old_y;
 old_y = new_y;
 if(Input.GetKey(KeyCode.Escape))
 {
  Application.Quit();
 }
 }
 int i;
 void OnGUI() 
 {
 //if(GUI.Button(new Rect(0,100,100,32),"vibrate!"))
 //{
 // //震动
 // Handheld.Vibrate();
 //}
 GUI.Label(new Rect(100,100,100,100),"g:"+Input.acceleration+"d_y:"+d_y);
 GUI.Label(new Rect(100,200,100,100),"i:"+i);
 if(d_y>distance)
 {
  i++;
  Handheld.Vibrate();
 }
 }
}

上一篇:C#使用Selenium的实现代码

栏    目:.NET代码

下一篇:C#判断字符串是否是int/double(实例)

本文标题:Unity实现手机摇一摇震动

本文地址:http://www.codeinn.net/misctech/42692.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有