public Vector3 point ;

Descripción

El primer punto de contacto.

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); } }