重力感应操控(unity iphone)

Posted Sun‘刺眼的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重力感应操控(unity iphone)相关的知识,希望对你有一定的参考价值。

方案一:speed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public var simulateAccelerometer:boolean = false;
var speed = 10.0;
function Update () {
    var dir : Vector3 = Vector3.zero;
    if (simulateAccelerometer)
    {
        dir.x = Input.GetAxis("Horizontal");
        dir.y = Input.GetAxis("Vertical");
    }
    else
    {
        dir.x = Input.acceleration.x;
        dir.y = Input.acceleration.y;
     
        // clamp acceleration vector to unit sphere
        if (dir.sqrMagnitude > 1)
            dir.Normalize();
        // Make it move 10 meters per second instead of 10 meters per frame...
    }
    dir *= Time.deltaTime;
    // Move object
    transform.Translate (dir * speed);
}

也可以把速度换成力

方案二:Force
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
public var force:float = 1.0;
public var simulateAccelerometer:boolean = false;
 
function FixedUpdate () {
    var dir : Vector3 = Vector3.zero;
 
    if (simulateAccelerometer)
    {
        // using joystick input instead of iPhone accelerometer
        dir.x = Input.GetAxis("Horizontal");
        dir.y = Input.GetAxis("Vertical");
    }
    else
    {
        // we assume that device is held parallel to the ground
        // and Home button is in the right hand
         
        // remap device acceleration axis to game coordinates
        // 1) XY plane of the device is mapped onto XZ plane
        // 2) rotated 90 degrees around Y axis
        dir.x = Input.acceleration.y;
        dir.y = Input.acceleration.x;
         
        // clamp acceleration vector to unit sphere
        if (dir.sqrMagnitude > 1)
            dir.Normalize();
    }
     
    rigidbody.AddForce(dir * force);
}

个人感觉方案一操控起来比较灵活,反应灵敏。方案二操控起来具有惯性,缓冲明显。

以上是关于重力感应操控(unity iphone)的主要内容,如果未能解决你的问题,请参考以下文章

打一局王者荣耀掉星的时间,我制作了一款支持 重力感应 的 3D动态壁纸

ios整理小应用-重力感应

unity3d 中的模型加了重力之后就会穿过地面往下掉,我模型和地面都加了碰撞啊,没有选择trigger

重力感应游戏可行性办法研究_完结

H5之重力感应篇

cocoscreator重力感应事件回调用