-1

I can get all the asset names and paths, but I don't know how to modify them. Who knows how to do it? It's better to use Python or maxscript.

1 Answers1

0

For example

assetData = getMAXFileAssetMetadata filePath

for asset in assetData do
    asset.filename = substituteString asset.filename original replacement

setMAXFileAssetMetadata filePath assetData

Python version would be pretty much the same, only with pymxs.runtime. prefix for the functions.

Swordslayer
  • 2,061
  • 1
  • 13
  • 15