如何在unity3d中给物体增加扭矩力
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);
}
}
- 上一篇:如何在Unity3D使用中更改界面字体大小颜色 2020/12/12
- 下一篇:U3d中如何给立方体的不同立面贴不同的纹理图 2020/12/10
