当前位置:网站首页>Unity_物体自转

Unity_物体自转

2022-08-09 19:20:00 不可_收_圾

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class 物体自转 : MonoBehaviour
{
    [SerializeField]
    private float speed = 0.005f;  //旋转速度

    void Start()
    {
        
    }
    
    void Update()
    {
        this.transform.Rotate(new Vector3(1, 0, 0)*speed, Space.World);
        //物体绕X轴进行自转
    }
}

挂载到要自转的物体

原网站

版权声明
本文为[不可_收_圾]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_36917144/article/details/126202228