查看: 1175|回复: 0
打印 上一主题 下一主题

重力感应操控(unity iphone)方案二

[复制链接]

1602

主题

1

听众

2万

积分

资深设计师

Rank: 7Rank: 7Rank: 7

纳金币
24658
精华
6

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

跳转到指定楼层
楼主
发表于 2012-4-23 14:04:31 |只看该作者 |倒序浏览
方案二:Force
public var force:float = 1.0;
02 public var simulateAccelerometer:boolean = false;
03   
04 function FixedUpdate () {
05     var dir : Vector3 = Vector3.zero;
06   
07     if (simulateAccelerometer)
08     {
09         // using joystick input instead of iPhone accelerometer

10         dir.x = Input.GetAxis("Horizontal");
11         dir.y = Input.GetAxis("Vertical");
12     }
13     else
14     {
15         // we assume that device is held parallel to the ground
16         // and Home button is in the right hand
17           
18         // remap device acceleration axis to game coordinates
19         // 1) XY plane of the device is mapped onto XZ plane
20         // 2) rotated 90 degrees around Y axis
21         dir.x = Input.acceleration.y;
22         dir.y = Input.acceleration.x;         
24         // clamp acceleration vector to unit sphere
25         if (dir.sqrMagnitude > 1)
26             dir.Normalize();
27     }
28      
29     rigidbody.AddForce(dir * force);
30 }
转自:http://www.cnblogs.com/lm3515/archive/2010/09/24/1833957.html


分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

手机版|纳金网 ( 闽ICP备2021016425号-2/3

GMT+8, 2024-11-27 16:44 , Processed in 0.088929 second(s), 28 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部