Problème saut Unity, variable isGrounded
Fermé
Gglebgdu78
Messages postés
3
Date d'inscription
vendredi 30 octobre 2020
Statut
Membre
Dernière intervention
4 mai 2022
-
Modifié le 4 mai 2022 à 18:43
Gglebgdu78 Messages postés 3 Date d'inscription vendredi 30 octobre 2020 Statut Membre Dernière intervention 4 mai 2022 - 4 mai 2022 à 22:08
Gglebgdu78 Messages postés 3 Date d'inscription vendredi 30 octobre 2020 Statut Membre Dernière intervention 4 mai 2022 - 4 mai 2022 à 22:08
A voir également:
- Problème saut Unity, variable isGrounded
- Comment supprimer une page sur word avec un saut de page ? - Guide
- Saut de colonne word - Guide
- Rébus saut en parachute - Forum Loisirs / Divertissements
- Vba range avec variable ✓ - Forum VB / VBA
1 réponse
Gglebgdu78
Messages postés
3
Date d'inscription
vendredi 30 octobre 2020
Statut
Membre
Dernière intervention
4 mai 2022
3
4 mai 2022 à 22:08
4 mai 2022 à 22:08
Désolé voici la partie qui manquait,
my bad
isGrounded = true;
}
}
void OnCollisionExit2D(Collision2D col)
{
if(col.gameObject.CompareTag("Ground"))
{
isGrounded = false;
}
}
void MovePlayer (float _horizontalMovement)
{
Vector3 targetVelocity = new Vector2(_horizontalMovement, rb.velocity.y);
rb.velocity = Vector3.SmoothDamp(rb.velocity, targetVelocity, ref velocity, .05f);
}
}
my bad
isGrounded = true;
}
}
void OnCollisionExit2D(Collision2D col)
{
if(col.gameObject.CompareTag("Ground"))
{
isGrounded = false;
}
}
void MovePlayer (float _horizontalMovement)
{
Vector3 targetVelocity = new Vector2(_horizontalMovement, rb.velocity.y);
rb.velocity = Vector3.SmoothDamp(rb.velocity, targetVelocity, ref velocity, .05f);
}
}