Unity 使用陀螺仪判断手机方向

Unity 使用陀螺仪判断手机方向

前言

当iphone开启锁定屏幕旋转的时候,使用Screen.orientation就可以获知设备方向,但当设置为下图
旋转设置
或者
旋转设置2
时,仍然需要强制旋转屏幕,就可以使用陀螺仪判断设备朝向。

代码

使用时把Text文本删除,添加OnDeviceRotation监听即可。

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class DeviceRotationHelper : MonoBehaviour
{
    /// <summary>
    /// 提示文字
    /// </summary>
    public Text text;

    /// <summary>
    /// 当设备旋转时触发
    /// </summary>
    public Action<DeviceOrientation> OnDeviceRotation;

    /// <summary>
    /// 当前设备旋转方向
    /// </summary>
    private DeviceOrientation currentDeviceOrientation;
    /// <summary>
    /// 当前设备旋转方向
    /// </summary>
    private DeviceOrientation CurrentDeviceOrientation {
        get {
            return currentDeviceOrientation;
        }
        set {
            if (value != currentDeviceOrientation)
            {
                currentDeviceOrientation = value;
                OnDeviceRotation?.Invoke(value);
                text.text = currentDeviceOrientation.ToString();
            }
        }
    }

    void Update()
    {
        //每帧判断设备方向
        CheckOrientation();
    }

    /// <summary>
    /// 检查设备朝向
    /// </summary>
    void CheckOrientation()
    {
        if (Mathf.Abs(Input.gyro.gravity.z) <= 0.9f)
        {
            if (Mathf.Abs(Input.gyro.gravity.x) > Mathf.Abs(Input.gyro.gravity.y))
            {
                if (Input.gyro.gravity.x > 0f)
                {
                    CurrentDeviceOrientation = DeviceOrientation.LandscapeRight;
                }
                else
                {
                    CurrentDeviceOrientation = DeviceOrientation.LandscapeLeft;
                }
            }
            else if (Input.gyro.gravity.y > 0f)
            {
                CurrentDeviceOrientation = DeviceOrientation.PortraitUpsideDown;
            }
            else
            {
                CurrentDeviceOrientation = DeviceOrientation.Portrait;
            }
        }
    }
}

测试图

参考

unity 陀螺仪判断手机方向

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值