“Einheitsobjekt zur 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

Ähnliche Antworten wie “Einheitsobjekt zur Mausposition”

Fragen ähnlich wie “Einheitsobjekt zur Mausposition”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen