Version: 2022.3
言語: 日本語
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); } }