mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
17 lines
265 B
Lua
17 lines
265 B
Lua
|
#!/usr/bin/env luajit
|
||
|
|
||
|
if (arg[1]==nil) then
|
||
|
print("Usage: "..arg[0].." ../path/to/*.ART")
|
||
|
return 1
|
||
|
end
|
||
|
|
||
|
B = require "build"
|
||
|
|
||
|
tile = B.loadarts(arg)
|
||
|
|
||
|
for i=0,B.MAX.TILES-1 do
|
||
|
if (tile.sizy[i] > 256) then
|
||
|
print(i..": "..tile.sizy[i])
|
||
|
end
|
||
|
end
|