View Single Post
01/25/16, 03:07 PM   #10
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,579
Unpack requires a numerically indexed table:
Lua Code:
  1. local colors = {1,1,1,1}
  2. local r,g,b,a = unpack(colors)
  Reply With Quote