“Cómo voltear un personaje en Unity 2D” Código de respuesta

Cómo voltear el personaje en Unity 2D

Put this in Update() = 

    //Flip the player's localScale.x 
    if the move speed is greater than .01 or less than -.01

        if (targetVelocity.x < -.01)
        {
            transform.eulerAngles = new Vector3(0, 180, 0); // Flipped
        }
        else if (targetVelocity.x > .01)
        {
            transform.eulerAngles = new Vector3(0, 0, 0); // Normal
        }
Pleasant Porpoise

Cómo voltear un personaje en Unity 2D

 //Checks if the left and right keys are pressed and flips the player accordingly
 //Make sure the player scale on the x axis is 1
    
    //Checks if the right key is pressed
    if (moveHorizontal > 0)
   	 {
     	rb2D.transform.localScale = new Vector3(1, transform.localScale.y, transform.localScale.z);
   	 }

	//Checks if Left Key is pressed
	else if (moveHorizontal < 0)
  	 {
       rb2D.transform.localScale = new Vector3(-1, transform.localScale.y, transform.localScale.z);
  	 }
Eric the Grey

Respuestas similares a “Cómo voltear un personaje en Unity 2D”

Preguntas similares a “Cómo voltear un personaje en Unity 2D”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código