Version: 2020.2
언어: 한국어
public static Collider[] OverlapSphere (Vector3 position, float radius, int layerMask= AllLayers, QueryTriggerInteraction queryTriggerInteraction= QueryTriggerInteraction.UseGlobal);

파라미터

position Center of the sphere.
radius Radius of the sphere.
layerMask A Layer mask defines which layers of colliders to include in the query.
queryTriggerInteraction Specifies whether this query should hit Triggers.

반환

Collider[] Returns an array with all colliders touching or inside the sphere.

설명

Computes and stores colliders touching or inside the sphere.

See Also: Physics.AllLayers. Allocates memory. Consider using Physics.OverlapSphereNonAlloc instead.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void ExplosionDamage(Vector3 center, float radius) { Collider[] hitColliders = Physics.OverlapSphere(center, radius); foreach (var hitCollider in hitColliders) { hitCollider.SendMessage("AddDamage"); } } }

See Also: Layer mask particularly "Casting Rays Selectively" for a detailed example of Layer masking.