- Added 2 new textures: BantoBar and Skyline.

- Added 6 new fonts: Oswald, Nueva Std Cond, Accidental Presidency, TrashHand, Harry P, Forced Square.
- Many improvements done on Welcome Screen.

- New API: _detalhes.table.deploy (t1, t2) copy values from t2 to t1.
This commit is contained in:
tercio
2014-08-23 15:04:01 -03:00
parent f97b9fbe42
commit 50f33fd301
15 changed files with 217 additions and 15 deletions
+11
View File
@@ -190,6 +190,17 @@
end
end
function _detalhes.table.deploy (t1, t2)
for key, value in pairs (t2) do
if (type (value) == "table") then
t1 [key] = t1 [key] or {}
_detalhes.table.deploy (t1 [key], t2 [key])
else
t1 [key] = value
end
end
end
function _detalhes:hex (num)
local hexstr = '0123456789abcdef'
local s = ''