How to batch-process imported assets with a single prompt
Когда использовать: You have 200 new textures and want consistent import settings, mip maps, and atlas placement.
Предварительные требования
- Unity project open, plugin installed — unity-mcp-cli install-plugin ./MyUnityProject or import the .unitypackage
- An MCP client configured — Point Claude Desktop or Cursor at the local MCP server printed by the CLI
Поток
-
Audit current settingsList every texture in Assets/Textures/UI. Show current TextureImporter settings grouped by the values used.✓ Скопировано→ Groups by settings — mostly consistent with outliers flagged
-
Apply a policyFor all of them set compression=HighQuality, filter=Bilinear, mipmaps=false. Reimport.✓ Скопировано→ Progress log + final consistent state
-
Verify visuallyTake a screenshot of Scene MainMenu from the default camera — confirm nothing looks broken.✓ Скопировано→ Screenshot returned, sanity-check passes
Итог: Uniform import settings across a folder + a screenshot trail.
Подводные камни
- Reimport blocks the editor domain reload — Save scene first; don't issue unrelated commands until reimport is done