Advertisement
Guest User

sprite animation

a guest
Apr 5th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CREATE:
  2. reload = 30 // Amount of time in between swings
  3. image_speed = 0
  4. image_index = 0
  5.  
  6. STEP:
  7. if image_index < 8 {
  8.     image_index += 0.15
  9. } else {
  10.     image_index = 8
  11.     if reload > 0 reload -= 1 else {
  12.         image_index = 0
  13.         reload = 0
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement