11 lines
246 B
Plaintext
11 lines
246 B
Plaintext
|
|
function Game.Preprocess_EnviromentInfo()
|
|
-- 1. add enviroment info
|
|
if nil ~= Table_Enviroment then
|
|
for k,v in pairs(Table_Map) do
|
|
if nil == EnviromentInfo[k] then
|
|
EnviromentInfo[k] = autoImport("Enviroment_"..k)
|
|
end
|
|
end
|
|
end
|
|
end |