“Klemmrotation der Einheit” Code-Antworten

wie man die Rotation in Einheit Chagne Chagne

transform.eulerAngles = new Vector3(0f, 180f, 0f); // rotates 180 degrees
Relieved Raccoon

Klemmrotation der Einheit

float rotationX = 0;
float rotationY = 0;
// you might also have some rotation speed variable
void Update() {
   rotationX += Input.GetAxis("Vertical") * Time.deltaTime;
   rotationX = Mathf.Clamp(rotationX, minRotationX, maxRotationX);
   rotationY += Input.GetAxis("Horizontal" * Time.deltaTime;
   transform.rotation = Quaternion.Euler(rotationX, rotationY, 0);
 }
Ashton

Ähnliche Antworten wie “Klemmrotation der Einheit”

Fragen ähnlich wie “Klemmrotation der Einheit”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen