“Comment retourner un personnage dans Unity 2D” Réponses codées

Comment retourner le caractère dans 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

Comment retourner un personnage dans 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

Réponses similaires à “Comment retourner un personnage dans Unity 2D”

Questions similaires à “Comment retourner un personnage dans Unity 2D”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code