ConstantForce.torque 力矩
var torque : Vector3
Description描述
The torque applied to the rigidbody every frame.
每帧应用给刚体的力矩。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
constantForce.torque = Vector3.up * 2;
}
}
// Rotates the object around the world y-axis
//绕世界y轴,旋转物体
constantForce.torque = Vector3.up * 2;
最后修改:2011年1月15日 Saturday 16:15