当前位置:   article > 正文

Unity物理效果-针对transform组件实现_unity 获得一个transition的宽

unity 获得一个transition的宽

一、移动(特效如——移动)

2D:

    (1) 移动

        this.GetComponent<RectTransform>().anchoredPosition += new Vector2(speed, 0);

    (2)获取坐标值

        PosX = this.GetComponent<RectTransform>().anchoredPosition.x;

        PosY = this.GetComponent<RectTransform>().anchoredPosition.y;

   (3)获取2D组件的大小和宽高

        

3D:

    (1)移动

        transform.localPosition += new Vector3(speed * Time.deltaTime, 0, 0); ----自身坐标

        transform.position += new Vector3(speed * Time.deltaTime, 0, 0);         ----世界坐标

        问题:local与global、center与pivot之间的区别?

    (2)获取坐标值

    (3)获取3D模型的大小和长宽高

二、旋转(特效如——旋转-自转、环绕-公转、抖动)

2D:

       this.GetComponent<RectTransform>().eulerAngles += new Vector3(1,1, 0);

3D:

     (1) this.transform.Rotate(Vector3.forward, speed * Time.deltaTime)    ----Rotate

     (2) this.transform.RotateAround(position, Vector3.right, speed);          ----RotateAround

     (3) this.transform.rotation *= Quaternion.Euler(speed , 0, 0);               ----欧拉角

      问题:欧拉角与四元数的区别与联系?

        

三、缩放(特效如——脉动、伸展、收缩)

2D:

      this.GetComponent<RectTransform>().localScale = new Vector3(1,1,1);

3D:

       transform.localScale = new Vector3(1,1,1);

四、其他(特效如——一键爆炸)

    

    

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/140627
推荐阅读
相关标签
  

闽ICP备14008679号