“Einheit bekommen Mausposition” Code-Antworten

Einheit bekommen Mausposition

Vector3 worldPosition = Camera.main.ScreenToWorldPoint(Input.mousePosition);
Troubled Toad

So finden Sie die Einheit der Mausposition

Vector2 mousePosition = new Vector2(Input.mousePosition.x, Input.mousePosition.y);
Ugly Unicorn

Einheitsobjekt zur Mausposition

//In 2d/UI you can move the object to your mouse position by writing this in a script and then adding it to the object you want to be at the mouse position also put it in the void update spot
transform.position = Input.mousePosition;

//or in 3d
transform.position = Camera.main.ScreenToWorldPoint(Input.mousePosition)
Levi Bills

Einheit bekommen Mausposition

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour
{
    void Update()
    {
        Vector3 mousePos = Input.mousePosition;            
    }
}
Funny Fly

Ähnliche Antworten wie “Einheit bekommen Mausposition”

Fragen ähnlich wie “Einheit bekommen Mausposition”

Weitere verwandte Antworten zu “Einheit bekommen Mausposition” auf C#

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen