Collider.enabled 启用

var enabled : boolean

Description描述

Enabled Colliders will collide with other colliders, disabled Colliders won't.

启用碰撞器将会碰撞其他碰撞器,禁用碰撞器就不会碰撞其他碰撞器。

This is shown as the small checkbox in the inspector of the Colliders.

这个在碰撞器的检视面板显示为一个小的复选框。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Awake() {
		collider.enabled = false;
	}
}
collider.enabled = false;
最后修改:2011年9月16日 Friday 12:43

本脚本参考基于Unity 3.4.1f5

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