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

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。