CapsuleCollider.direction 方向

var direction : int

Description描述

The direction of the capsule.

胶囊的方向。

0 -> Capsule height is along the x-axis. 1 -> Capsule height is along the y-axis. 2 -> Capsule height is along the z-axis.

0表示胶囊的高度沿着x轴;1表示胶囊的高度沿着y轴;2表示胶囊的高度沿着z轴。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		collider.direction = 0;
	}
}
// Make the capsule height be along the x-axis
//使胶囊的高度沿着x轴
collider.direction = 0;
最后修改:2011年5月10日 Tuesday 16:17

本脚本参考基于Unity 3.4.1f5

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