Unfortunately no integrated way, but you could always parse the .txt files, something like that:
function getPackTextures(packname)local textures ={}local file =io.open(packname..".txt")if file thenlocal parsed
for line in file:lines()do
parsed = line:split(", "))
textures[#textures+1]= parsed[1]end-- now variable textures contains all texture names from packelseprint("no pack found")endreturn textures
end
Comments
But can a internal function be added for this? I found it is just silly you cannot query what regions exist!