Changed: #964 Some more rules for batched max convert paths.

This commit is contained in:
kaetemi 2010-09-01 15:15:55 +02:00
parent 773d034a30
commit e33ebf8ec7

View file

@ -118,6 +118,19 @@ fn getFixedTexturePath t =
return testDestination
)
)
if (not (doesFileExist absoluteDestination)) and ((findString t "\\sky_V2\\textures\\textures") != undefined) then
(
testDestination = ("W:\\database\\sky_V2\\textures\\textures\\nodds\\" + (getFilenameFile (filenameFromPath t)) + ".png")
if (doesFileExist testDestination) then (return testDestination)
testDestination = ("W:\\database\\sky_V2\\textures\\textures\\desert\\" + (getFilenameFile (filenameFromPath t)) + ".png")
if (doesFileExist testDestination) then (return testDestination)
testDestination = ("W:\\database\\sky_V2\\textures\\textures\\forest\\" + (getFilenameFile (filenameFromPath t)) + ".png")
if (doesFileExist testDestination) then (return testDestination)
testDestination = ("W:\\database\\sky_V2\\textures\\textures\\jungle\\" + (getFilenameFile (filenameFromPath t)) + ".png")
if (doesFileExist testDestination) then (return testDestination)
testDestination = ("W:\\database\\sky_V2\\textures\\textures\\lacustre\\" + (getFilenameFile (filenameFromPath t)) + ".png")
if (doesFileExist testDestination) then (return testDestination)
)
return absoluteDestination
)