Module:AocUtils
Jump to navigation
Jump to search
Documentation for this module may be created at Module:AocUtils/doc
local pack = {}
aoc_resource_prefixes = {
"^Terrain/A/AocField",
"^UI/StaffRollDLC/",
"^Map/MainField/",
"^Map/MainFieldDungeon/",
"^Map/AocField/",
"^Physics/StaticCompound/AocField/",
"^Physics/StaticCompound/MainFieldDungeon/",
"^Movie/Demo6",
"^Game/AocField/",
"^NavMesh/AocField/",
"^NavMesh/MainFieldDungeon/",
"^Physics/TeraMeshRigidBody/AocField/",
"^Voice/.+/Stream_Demo6.+/.+\.bfstm$",
"^System/AocVersion\.txt$",
}
function should_use_aoc_path(path)
for i, p in ipairs(aoc_resource_prefixes) do
if string.find(path, p) then
return true
end
end
return false
end
return pack