Version: 5.4
public static int AllAreas ;

説明

すべての NavMesh エリアを含むエリアマスク定数

マスクはすべての NavMesh エリアタイプを受け入れることを示すために NavMesh.Raycast などのクエリ関数で使用できます。

// TargetReachable.cs
using UnityEngine;
using System.Collections;
public class TargetReachable : MonoBehaviour {
	public Transform target;
	private NavMeshHit hit;
	private bool blocked = false;
	void Update() {
		// Allow pass through all area types when testing if the target position
		// is reachable from the transform location.
		blocked = NavMesh.Raycast(transform.position, target.position, out hit, NavMesh.AllAreas);
		Debug.DrawLine(transform.position, target.position, blocked ? Color.red : Color.green);
		if (blocked)
			Debug.DrawRay(hit.position, Vector3.up, Color.red);
	}
}

See also:
Areas and Costs – to learn how to use different Area types.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961