Guest User

Untitled

a guest
Dec 18th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. if (dashControl.isDashing)
  2. {
  3. if ((dashControl.dirOfDash == dashClass.dirOfDashEnum.EAST && Input.GetAxis("Horizontal") < -0.5f)
  4. || (dashControl.dirOfDash == dashClass.dirOfDashEnum.WEST && Input.GetAxis("Horizontal") > 0.5f))
  5. {
  6. StopCoroutine(dash());
  7. StartCoroutine(clearDash());
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment