public static bool CheckSphere (Vector3 position, float radius, int layerMask= DefaultRaycastLayers, QueryTriggerInteraction queryTriggerInteraction= QueryTriggerInteraction.UseGlobal);

파라미터

positionCenter of the sphere.
radiusRadius of the sphere.
layerMaskA Layer mask that is used to selectively ignore colliders when casting a capsule.
queryTriggerInteractionSpecifies whether this query should hit Triggers.

설명

Returns true if there are any colliders overlapping the sphere defined by position and radius in world coordinates.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float sphereRadius; AudioSource audioSource;

void Start() { audioSource = GetComponent<AudioSource>(); }

void WarningNoise() { // Play a noise if an object is within the sphere's radius. if (Physics.CheckSphere(transform.position, sphereRadius)) { audioSource.Play(); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961