ConstantForce.force 力
var force : Vector3
Description描述
The force applied to the rigidbody every frame.
每帧应用力给刚体。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
constantForce.force = Vector3.up * 10;
}
}
// Moves the rigidbody upwards in world coordinates
//在世界坐标向上移动刚体
constantForce.force = Vector3.up * 10;
最后修改:2011年1月15日 Saturday 16:08