首页
社区
课程
招聘
[旧帖] [求助]四元数(Quaternion)和旋转,unityquaternion求助 0.00雪花
发表于: 2015-11-28 16:00 1572

[旧帖] [求助]四元数(Quaternion)和旋转,unityquaternion求助 0.00雪花

2015-11-28 16:00
1572
收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 2
活跃值: (120)
能力值: ( LV5,RANK:70 )
在线值:
发帖
回帖
粉丝
2
用Quaternion中的一个方法identity
该方法返回表示旋转的欧拉角度。

// Create a rotation
//创建一个旋转
var rotation = Quaternion.identity;

// Assign a rotation 30 degrees around the y axis
//绕y轴,指定一个30度旋转角
rotation.eulerAngles = Vector3(0, 30, 0);
// print the rotation around the y-axis
//打印绕y轴的旋转角度
print(rotation.eulerAngles.y);
2015-11-28 23:38
0
游客
登录 | 注册 方可回帖
返回
//