Module:AocUtils: Difference between revisions
Jump to navigation
Jump to search
imported>Leoetlino (Created page with "local p = {} aoc_resource_prefixes = { "^Terrain/A/AocField", "^UI/StaffRollDLC/", "^Map/MainField/", "^Map/MainFieldDungeon/", "^Map/AocField/", "^Physics/Static...") |
imported>Leoetlino No edit summary |
||
Line 1: | Line 1: | ||
local | local pack = {} | ||
aoc_resource_prefixes = { | aoc_resource_prefixes = { | ||
Line 27: | Line 27: | ||
end | end | ||
return | return pack |
Revision as of 18:55, 8 September 2018
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