Answers for "unity distance"

7

unity get distance between two objects

// Vector3.Distance is the same as (a-b).magnitude

float distance = Vector3.Distance(a.transform.position, b.transform.position);
Posted by: Guest on November-29-2020
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 "TypeScript"

Browse Popular Code Answers by Language