assets-find-built-in

Find built-in Unity assets by name and type in the Editor.

Updated Aug 26, 2025
One-click install
npx skills add https://github.com/infotechsrealm/PanicAtThePond --skill assets-find-built-in-infotechsrealm
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: assets-find-built-in
Source: https://github.com/infotechsrealm/PanicAtThePond/tree/main/.claude/skills/assets-find-built-in
Command: npx skills add https://github.com/infotechsrealm/PanicAtThePond --skill assets-find-built-in-infotechsrealm

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill streamlines the process of finding built-in Unity assets, eliminating the need for manual search through the Unity Editor's Resources folder.

Core Features & Use Cases

  • Name-based Search: Quickly locate assets by partial or exact name.
  • Type-based Filtering: Narrow down results by specifying the asset type.
  • Result Limiting: Limit the number of results returned to avoid overwhelming the user.
  • Use Case: When you need to find a specific texture or scriptable object from the Unity Editor's built-in resources without navigating through the entire folder structure.

Quick Start

Use the assets-find-built-in skill to find all textures named 'background' in the Unity Editor's built-in resources, with a maximum of 5 results.

Frequently Asked Questions about assets-find-built-in

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

FAQPage Schema
How do I find built-in Unity assets by name without GUIDs?

You can find built-in Unity assets by name using a search script that directly queries the Resources/unity_builtin_extra directory, bypassing the need for GUID lookups since these assets do not have them.

What is the best way to search for built-in Unity textures and scriptable objects?

The best way to search for built-in Unity assets is to use name-based and type-based filtering to narrow down textures or scriptable objects, limiting results to avoid overwhelming the Editor interface.

How do I locate specific assets in the Unity Editor's built-in resources folder?

You locate specific assets in the Unity Editor's built-in resources by executing a targeted search within the Resources/unity_builtin_extra directory, returning a list of asset references matching your criteria.

Can I search for built-in Unity assets using type-based filtering?

Yes, you can use type-based filtering to narrow down built-in Unity assets. This allows you to specify the exact asset type, significantly refining the search results returned from the built-in resources directory.

Why does my built-in Unity asset search fail without a GUID lookup?

Built-in Unity asset searches fail with GUID lookups because built-in assets do not have GUIDs. You must search by name or type within the Resources/unity_builtin_extra directory instead of relying on GUID references.

How do I limit the number of built-in Unity asset search results returned?

You limit the number of built-in Unity asset search results by specifying a maximum return count in your search query, which prevents the script from returning an overwhelming list of asset references.