加速度传感器

作者:追风剑情 发布于:2014-8-31 16:42 分类:Unity3d

  1. using UnityEngine;
  2.  
  3. public class AccelerationTest : MonoBehaviour {
  4.  
  5. float speed = 0.2f;
  6. Vector3 dir;
  7.  
  8. Transform mTran;
  9.  
  10. void Awake()
  11. {
  12. mTran = transform;
  13. }
  14.  
  15. void OnGUI()
  16. {
  17. string s = string.Format("x={0},y={1},z={2}", mTran.localPosition.x, mTran.localPosition.y, mTran.localPosition.z);
  18. GUIStyle style = new GUIStyle();
  19. style.fontSize = 40;//设置字体大小
  20. style.normal.background = null; //设置背景填充的
  21. style.normal.textColor = new Color(1, 0, 0);//设置字体颜色
  22.  
  23. GUI.Label(new Rect(10, 40, 200, 20), s, style);
  24.  
  25. GUI.color = Color.red;
  26.  
  27. if (GUI.Button(new Rect(10, 20, 100, 20), "Reset")){
  28. transform.localPosition = Vector3.zero;
  29. }
  30.  
  31. if (GUI.Button(new Rect(200, 20, 100, 20), "Exit")){
  32. #if UNITY_IPHONE || UNITY_ANDROID
  33.                 System.Diagnostics.Process.GetCurrentProcess().Kill();
  34. #endif
  35.         Application.Quit();
  36. #if UNITY_EDITOR
  37.         if (Application.isEditor)
  38.         {
  39.             UnityEditor.EditorApplication.isPlaying = false;
  40.         }
  41. #endif
  42. }
  43. }
  44.  
  45.     // Update is called once per frame
  46.     void Update () {
  47. //线性加速度的三维向量x、y、z分别标识手机屏幕竖直方向、水平方向和垂直屏幕方向。
  48. //通过手机重力传感器就能获取手机移动或者旋转过程中3个分量的数值。
  49. dir.x = -Input.acceleration.y;
  50. dir.y = Input.acceleration.x;
  51. dir.z = Input.acceleration.z;
  52. //将数值大于1的线性加速度的分量限制为1
  53. if (dir.sqrMagnitude > 1)
  54. dir.Normalize();
  55. dir *= Time.deltaTime;
  56. transform.Translate(dir * speed);
  57.     }
  58. }

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号