Answers for "calculate distance unity"

8

how to compare distance between 2 objects unity

float distance = Vector3.Distance (object1.transform.position, object2.transform.position);
Posted by: Guest on February-20-2020
0

Distance Calculation Unity

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour
{
    public Transform other;

    void Example()
    {
        if (other)
        {
            float dist = Vector3.Distance(other.position, transform.position);
            print("Distance to other: " + dist);
        }
    }
}
Posted by: Guest on October-20-2021

Code answers related to "calculate distance unity"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language