zoukankan      html  css  js  c++  java
  • Transform.Rotate 旋转

    function Rotate (eulerAngles : Vector3relativeTo : Space = Space.Self) : void

    Description描述

    Applies a rotation of eulerAngles.z degrees around the z axis, eulerAngles.x degrees around the x axis, and eulerAngles.y degrees around the y axis (in that order).

    应用一个欧拉角的旋转角度,eulerAngles.z度围绕z轴,eulerAngles.x度围绕x轴,eulerAngles.y度围绕y轴(这样的顺序)。

    If relativeTo is left out or set to Space.Self the rotation is applied around the transform's local axes. (The x, y and z axes shown when selecting the object inside the Scene View.) If relativeTo is Space.World the rotation is applied around the world x, y, z axes.

    如果相对于留空或者设置为Space.Self 旋转角度被应用围绕变换的自身轴。(当在场景视图选择物体时,x、y和z轴显示)如果相对于 Space.World 旋转角度被应用围绕世界的x、y、z轴。

    function Update() {
        // Slowly rotate the object around its X axis at 1 degree/second.
        //沿着x轴每秒1度慢慢的旋转物体
        transform.Rotate(Vector3.right * Time.deltaTime);
    
        // ... at the same time as spinning relative to the global
        // Y axis at the same speed.
        //相对于世界坐标沿着y轴每秒1度慢慢的旋转物体
        transform.Rotate(Vector3.up * Time.deltaTime, Space.World);
    }

    • function Rotate (xAngle : float, yAngle : float, zAngle : float, relativeTo : Space = Space.Self) : void

    Description描述

    Applies a rotation of zAngle degrees around the z axis, xAngle degrees around the x axis, and yAngle degrees around the y axis (in that order).

    应用一个旋转角度,zAngle度围绕z轴,xAngle度围绕x轴,yAngle度围绕y轴(这样的顺序)。

    If relativeTo is left out or sot to Space.Self the rotation is applied around the transform's local axes. (The x, y and z axes shown when selecting the object inside the Scene View.) If relativeTo is Space.World the rotation is applied around the world x, y, z axes.

    如果相对于留空或者设置为Space.Self 旋转角度被应用围绕变换的自身轴。(当在场景视图选择物体时,x、y和z轴显示)如果相对于 Space.World 旋转角度被应用围绕世界的x、y、z轴。

    function Update() {
        // Slowly rotate the object around its X axis at 1 degree/second.
        //围绕x轴每秒1度,慢慢的旋转物体
        transform.Rotate(Time.deltaTime, 0, 0);
    
        // ... at the same time as spinning it relative to the global
        // Y axis at the same speed.
        //相对于世界坐标,围绕y轴每秒1度,慢慢的旋转物体
        transform.Rotate(0, Time.deltaTime, 0, Space.World);
    }

    • function Rotate (axis : Vector3angle : float, relativeTo : Space = Space.Self) : void

    Description描述

    Rotates the transform around axis by angle degrees.

    按照angle度围绕axis轴旋转变换。

    If relativeTo is left out or set to Space.Self the axis parameter is relative to the transform's local axes. (The x, y and z axes shown when selecting the object inside the Scene View.) If relativeTo is Space.World the axis parameter is relative to the world x, y, z axes.

    如果相对于留空或者设置为Space.Self 旋转角度被应用围绕变换的自身轴。(当在场景视图选择物体时,x、y和z轴显示)如果相对于 Space.World 旋转角度被应用围绕世界的x、y、z轴。

    function Update() {
        // Slowly rotate the object around its X axis at 1 degree/second.
        //围绕x轴每秒1度,慢慢的旋转物体
        transform.Rotate(Vector3.right, Time.deltaTime);
    
        // ... at the same time as spinning it relative to the global
        // Y axis at the same speed.
        //相对于世界坐标,围绕y轴每秒1度,慢慢的旋转物体
        transform.Rotate(Vector3.up, Time.deltaTime, Space.World);
    }
  • 相关阅读:
    shell脚本计算斐波那契数列
    SQL查询出某字段不等于某值的行(其中有为NULL的字段)
    如何修改和关闭1433端口
    SqlServer 数据库日志无法收缩处理过程
    人生的抉择—aspx、ashx、asmx文件处理请求效率比较
    HTTP 错误 500.21
    如何使用快照来初始化化请求订阅
    怎么改svn的登陆账号
    更换用installshield打包生成exe文件的图标【转】
    win10下怎么在桌面创建IIS快捷方式
  • 原文地址:https://www.cnblogs.com/vincentDr/p/3678342.html
Copyright © 2011-2022 走看看