“Wie man ein Objekt in Einheit bewegen lässt” Code-Antworten

Einheit, wie man ein Objekt bewegt

float x = 10f; //the x value for the object's position
float y = 10f; //the y value for the object's position
float z = 10f; //the z value for the object's position
Vector3 position = new Vector3(x, y, z); // this will create a vector with the values of the x, y, and z values
transform.position = position; //this change the object that this script is attached to position to the position vector that was created 
Modern Mink

Wie man ein Objekt in Einheit bewegen lässt

Vector3 input = new Vector3 (Input.GetAxis("Horizontal"), 0 , Input.GetAxis("Vertical");
Vector3 dir = input.normalized;
Vecotr3 vel = dir * speed * Time.deltaTime;

transform.Translate(vel);
Yo Ma Ma

Ähnliche Antworten wie “Wie man ein Objekt in Einheit bewegen lässt”

Fragen ähnlich wie “Wie man ein Objekt in Einheit bewegen lässt”

Weitere verwandte Antworten zu “Wie man ein Objekt in Einheit bewegen lässt” auf C#

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen