Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. function drawAnimBarUD(x,y,w,h,percent) --Made by Red The Blue Color
  2. render.drawRectOutline(x,y,w,h)
  3. render.drawRect(x,y+h-(h*percent),w,h*percent)
  4. end
  5.  
  6. function drawAnimBarUDR(x,y,w,h,percent) --Made by Red The Blue Color
  7. render.drawRectOutline(x,y,w,h)
  8. render.drawRect(x,y,w,h*percent)
  9. end
  10.  
  11. function drawAnimBarLR(x,y,w,h,percent) --Made by Red The Blue Color
  12. render.drawRectOutline(x,y,w,h)
  13. render.drawRect(x,y,w*percent,h)
  14. end
  15.  
  16. function drawAnimBarLRR(x,y,w,h,percent) --Made by Red The Blue Color
  17. render.drawRectOutline(x,y,w,h)
  18. render.drawRect(x+w-(w*percent),y,w*percent,h)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement