ro-table/Assets/Resources/Script/Refactory/Game/Preprocess/Preprocess_EnviromentInfo.txt
2025-06-04 05:12:01 +08:00

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