Advertisement
zebadeee

Random typewriter speed

Apr 24th, 2020
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. minRate = 2;  // frames per character
  2. maxRate = 6;
  3. charCount = 0;
  4.  
  5. t = 0;
  6.  
  7. seedRandom(index,true);
  8.  
  9. while (t < time){
  10.   charCount++;
  11.   t += framesToTime(random(minRate,maxRate));
  12. }
  13.  
  14. value.substr(0,charCount)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement