unity3d中怎么实现让摄像机跟随手机的方向改变而改变 5

 我来答
  • 你的回答被采纳后将获得:
  • 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏5(财富值+成长值)
是照6K
2017-10-16
知道答主
回答量:6
采纳率:0%
帮助的人:4706
展开全部
用陀螺仪,非常方便,几行代码!
using UnityEngine;
using System.Collections;
// 陀螺仪
public class GyroscopeComponent: MonoBehaviour
{
public float interval = 0.2f;

Gyroscope gyro;
Quaternion quatMult;
Quaternion quatMap;
//UILabel ul;
public GameObject camParent;
private Vector3 qtBack;
private bool bDown = true;

void Start()
{
// find the current parent of the camera's transform
// instantiate a new transform
// match the transform to the camera position
camParent.transform.position = transform.position;
// make the new transform the parent of the camera transform
transform.parent = camParent.transform;

gyro = Input.gyro;

gyro.enabled = true;
camParent.transform.eulerAngles = new Vector3(90, 0, 0);
quatMult = new Quaternion(0, 0, 1, 0);
qtBack = transform.localRotation.eulerAngles;
}

void Update()
{
quatMap = new Quaternion(gyro.attitude.x, gyro.attitude.y, gyro.attitude.z, gyro.attitude.w);
Quaternion qt = quatMap * quatMult;
transform.localRotation = qt;
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
幸福_忧愁
2017-08-01
知道答主
回答量:2
采纳率:0%
帮助的人:1939
展开全部
不是调用陀螺仪?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
祁段祁段
2014-12-24 · 超过31用户采纳过TA的回答
知道答主
回答量:66
采纳率:0%
帮助的人:47.6万
展开全部
你能得到手机的方向么?
追问
已经解决,找到了相关脚本
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式