Transform 位置 旋转

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Transform 位置 旋转相关的知识,希望对你有一定的参考价值。

using UnityEngine;
using System.Collections;
using Box2D.Dynamics;

public class BodyGameObj : MonoBehaviour {
    public b2Body body;

    void Start () {
    
    }

    void Update () {
        Vector3 pos = transform.localPosition;
        pos.x = body.GetPosition ().x;
        pos.y = body.GetPosition ().y;
        transform.localPosition = pos;
        transform.localRotation = Quaternion.Euler(0, 0, body.GetAngle () * 57.3f);
    }
}

 

以上是关于Transform 位置 旋转的主要内容,如果未能解决你的问题,请参考以下文章

CSS transform中的rotate的旋转中心怎么设置?

将车轮旋转到特定点

div 文字 css旋转问题

3D旋转菜单

为啥 CSS transform,translate 会改变旋转元素的旋转?

Unity 根据前后帧位置自动旋转