您的位置:首页 > 新闻动态 > 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);
    }
}