• 您(nín)的位置:首頁 > 新聞動態 > Unity3D

    unity3d給物體增加扭矩力

    2019/4/9      點擊:
    using UnityEngine;
    using System.Collections;public class AddTorqueExample : MonoBehaviour
    {
        public float amount = 50f;
        
        
        void FixedUpdate ()
        {
            float h = Input.GetAxis("Horizontal") * amount * Time.deltaTime;
            float v = Input.GetAxis("Vertical") * amount * Time.deltaTime;
            
            rigidbody.AddTorque(transform.up * h);
            rigidbody.AddTorque(transform.right * v);
        }
    }
    密桃直播-密桃直播手机版下载-蜜桃直播app下载安装-蜜桃直播官方版下载