unity-importer

Configure Unity asset import settings for textures, audio, and models.

1.6k|152|Updated Jan 18, 2026
One-click install
npx skills add https://github.com/Besty0728/Unity-Skills --skill unity-importer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unity-importer
Source: https://github.com/Besty0728/Unity-Skills/tree/main/unity-skills/skills/importer
Command: npx skills add https://github.com/Besty0728/Unity-Skills --skill unity-importer

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Get and set import settings for Textures, Audio, and Models in Unity, enabling consistent pipelines and faster iteration across projects.

Core Features & Use Cases

  • Granular control: Get and set per-asset import properties such as textureType, maxSize, filterMode, compression, mipmapEnabled, sRGB, readable, and wrapMode.
  • Batch operations: Apply the same configuration across 2+ assets with batch variants like texture_set_settings_batch, audio_set_settings_batch, and model_set_settings_batch.
  • Real-world workflow: Prepare a batch of textures, audio files, and models to ensure consistent import settings before building scenes.

Quick Start

Examples:

  • Single operation: unity_skills.call_skill("texture_set_settings", assetPath="Assets/Textures/ui.png", textureType="Sprite", maxSize=512)
  • Batch operation: unity_skills.call_skill("texture_set_settings_batch", items=[ {"assetPath":"Assets/Textures/logo.png","textureType":"Sprite","maxSize":512}, {"assetPath":"Assets/Textures/icon.png","textureType":"Sprite","maxSize":256} ])

Frequently Asked Questions about unity-importer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Unity asset import settings for textures, audio, and models?

You can automate Unity asset import settings by calling texture_set_settings, audio_set_settings, and model_set_settings with parameters like assetPath, textureType, maxSize, and compression to apply consistent configurations.

Can I apply the same Unity texture import settings to multiple assets at once?

Yes, you can apply the same Unity texture import settings across multiple assets by using the texture_set_settings_batch function and passing an items array containing individual assetPath and configuration pairs.

What texture import properties can I configure in Unity through automation?

You can configure Unity texture import properties including textureType, maxSize, filterMode, compression, mipmapEnabled, sRGB, readable, and wrapMode to ensure consistent asset pipelines.

How do I set up a consistent Unity import pipeline for multiple asset types?

Build a consistent Unity import pipeline by using batch operations for textures, audio, and models, applying uniform settings like maxSize and compression across all assets before scene building.

Do I need any external dependencies or components to configure Unity asset import settings?

No external dependencies or components are required to configure Unity asset import settings, as the skill operates independently to get and set properties for textures, audio, and models.

What is the best way to batch configure Unity audio and model import settings?

The best way to batch configure Unity audio and model import settings is using audio_set_settings_batch and model_set_settings_batch, which accept multiple items to apply uniform configurations efficiently.