finished fixing events control

This commit is contained in:
2020-02-02 10:20:34 -05:00
parent a87e8ff093
commit c2977d355d
7 changed files with 243 additions and 110 deletions

View File

@@ -231,5 +231,6 @@ public class Player : MonoBehaviour
public void ThrowUserInTheAirHurt()
{
GetComponent<Rigidbody2D>().velocity += new Vector2(Mathf.Sign(transform.localScale.x) * -1 * hurtVelocity, hurtVelocity);
isFighting = false;
}
}