View Single Post
01-26-14, 03:02 AM   #6
elcius
A Cliff Giant
AddOn Author - Click to view addons
Join Date: Sep 2011
Posts: 75
I made one of these ages go to use on nameplates, It's made of 345 64x64 frames.
Lua Code:
  1. local n = floor(345*p);
  2. Texture:SetTexCoord(
  3.     0.001953125*n,0,
  4.     0.001953125*n,1,
  5.     0.001953125*(n+1),0,
  6.     0.001953125*(n+1),1
  7. )
Attached Files
File Type: zip Cooldown.zip (186.0 KB, 442 views)
  Reply With Quote