원클릭으로
asset-hunter-pro
Asset Hunter Pro — unused asset detection, dependency graph, duplicate finder, project cleanup automation for Unity
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Asset Hunter Pro — unused asset detection, dependency graph, duplicate finder, project cleanup automation for Unity
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Author game-design diagrams (quest trees, economy flows, narrative branches, level layouts) from copy-ready Mermaid templates. Authoring only — NOT an adapter.
DOTS RPG grid inventory, item passive effects, and set bonuses — polyomino placement, rotation, auto-fit, PassiveEffectSystem, ItemSetBonusSystem, ModifierSource.ItemPassive/ItemSet.
Practical tools and validation methods for game balance — DPS calculators, EHP formulas, spreadsheet layouts, stat audits, difficulty spike detection
GDD structure, templates, and living documentation patterns for game projects — wiki pages, design docs, section layout, sync triggers
Game feel and juice — screen shake, hit stop, particles, animation curves, input responsiveness, feedback timing. Makes actions feel satisfying.
Mobile game design patterns — session design, retention mechanics, notification strategy, portrait/landscape, battery/thermal constraints, FTUE
| name | asset-hunter-pro |
| effort | medium |
| description | Asset Hunter Pro — unused asset detection, dependency graph, duplicate finder, project cleanup automation for Unity |
| triggers | ["unused assets","project cleanup","asset dependencies","duplicate detection","build size optimization","asset management","dead assets"] |
| keywords | ["assets","optimization","cleanup","asset hunter"] |
| version | 1.3.1 |
| origin | theonekit-unity |
| repository | The1Studio/theonekit-unity |
| module | unity-base |
| protected | false |
Unity Editor tool for identifying unused assets, tracking dependencies, finding duplicates, and analyzing build reports. Package: com.heurekagames.assethunterpro v2.2.26.
| Feature | Menu Path | Key Class |
|---|---|---|
| Unused Assets | Window/Asset Hunter PRO/Asset Hunter PRO | AH_Window |
| Dependency Graph | Window/Asset Hunter PRO/Dependency Graph | AH_DependencyGraphWindow |
| Duplicate Finder | Window/Asset Hunter PRO/Duplicate Assets | AH_DuplicateWindow |
| Settings | Window/Asset Hunter PRO/Settings | AH_SettingsWindow |
1. Run a Unity build (auto-logs to .ahbuildinfo)
2. Open Asset Hunter PRO window
3. Load latest report → review unused assets in tree view
4. Exclude false positives (scripts, addressables, plugins)
5. Delete confirmed unused assets
6. Re-verify with dependency graph
| Category | Example | Use Case |
|---|---|---|
| Paths | Assets/Plugins/ | Third-party folders |
| Types | MonoScript | Scripts (common false positive) |
| Extensions | .shader, .cginc | Shader includes |
| Files | Assets/Resources/config.json | Specific files |
| Folders | Editor, Gizmos | Unity special folders |
using HeurekaGames.AssetHunterPRO;
// Settings singleton
var settings = AH_SettingsManager.Instance;
settings.AddPathToExcludeList("Assets/Plugins/");
// Reports stored as .ahbuildinfo JSON in project
// Access via AH_BuildInfoManager (through AH_Window)
See references/api-reference.md for full API.
Use manage_asset_hunter MCP tool for automated queries:
scan_unused — list unused assets from latest reportget_duplicates — find duplicate assets by content hashget_dependencies — query asset reference graphget_settings — current exclusion configurationMonoScript type.ahbuildinfo = no unused asset data#if UNITY_EDITOR, no runtimeSee references/gotchas.md for workarounds.
references/workflow-guide.md — Scan, clean, CI integration stepsreferences/api-reference.md — Public classes and methodsreferences/gotchas.md — Known issues and workarounds