Advertisement
RealiteeeyyyyTV

Untitled

Jan 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public int startTime;
  2.  
  3. public int maxTime;
  4.  
  5. void Update ()
  6. {
  7. if(charController.velocity.magnitude > 0 && Input.GetKey(KeyCode.LeftShift))
  8. {
  9. startTime = startTime - 1;
  10. if (startTime == 0)
  11. {
  12. startTime = maxTime;
  13. ag.AddExperience(expToGive);
  14. }
  15. staminaSlider.value -= Time.deltaTime / staminaFallRate * staminaFallMult;
  16. staminaText.text = (int)staminaSlider.value + "/100";
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement