版本:Unity 6 (6000.0)
语言中文(简体)
  • C#

ContactPoint.normal

建议更改

成功!

感谢您帮助我们改进 Unity 文档的质量。尽管我们无法接受所有提交,但我们会逐一阅读用户建议的每一项更改,然后根据需要进行更新。

关闭

提交失败

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

关闭

取消

public Vector3 normal;

描述

接触点的法线。

以下示例将绘制一条线段来表示碰撞中的每个法线。每条线段都将在场景视图中绘制出来。

using UnityEngine;

public class Example : MonoBehaviour { void OnCollisionEnter(Collision other) { // Print how many points are colliding with this transform Debug.Log("Points colliding: " + other.contacts.Length);

// Print the normal of the first point in the collision. Debug.Log("Normal of the first point: " + other.contacts[0].normal);

// Draw a different colored ray for every normal in the collision foreach (var item in other.contacts) { Debug.DrawRay(item.point, item.normal * 100, Random.ColorHSV(0f, 1f, 1f, 1f, 0.5f, 1f), 10f); } } }