版本: Unity 6 (6000.0)
语言英语
  • C#

Collider.ClosestPointOnBounds

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们确实会阅读用户提出的每项更改建议,并在适用情况下进行更新。

关闭

提交失败

由于某些原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public Vector3 ClosestPointOnBounds(Vector3 position);

描述

附加碰撞体的边界框中最接近的点。

这可用于计算应用爆炸伤害时的命中点。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float hitPoints = 100.0F; public Collider coll; void Start() { coll = GetComponent<Collider>(); }

void ApplyHitPoints(Vector3 explosionPos, float radius) { // The distance from the explosion position to the surface of the collider. Vector3 closestPoint = coll.ClosestPointOnBounds(explosionPos); float distance = Vector3.Distance(closestPoint, explosionPos);

// The damage should decrease with distance from the explosion. float damage = 1.0F - Mathf.Clamp01(distance / radius); hitPoints -= damage * 10.0F; } }