亚洲国产精品无码久久久不卡,国产成人无码网站,歪歪漫画sss韩漫画在线,一夲道久久东京热

  • 您的位置:首頁 > 新聞動態(tài) > 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);
        }
    }