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

ContactPoint.point

建议更改

成功!

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

关闭

提交失败

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

关闭

取消

public Vector3 point;

描述

接触点。

using UnityEngine;

public class Example : MonoBehaviour { // Print how many points are colliding this transform // And print the first point that is colliding. void OnCollisionEnter(Collision other) { print("Points colliding: " + other.contacts.Length); print("First point that collided: " + other.contacts[0].point); } }