assets-get-data

Extract serializable data from Unity assets using ReflectorNet.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires ReflectorNet, and includes scripts (resource) components.

What problem does it solve?

This Skill streamlines the process of accessing and extracting data from Unity assets, reducing the time spent on manual data retrieval.

Core Features & Use Cases

  • Asset Data Extraction: Extracts all serializable fields and properties from Unity assets.
  • Path-Scoped Reads: Allows users to specify paths for targeted field reads, or use view queries for subtree navigation and filtering.
  • Use Case: When you need to quickly fetch the material properties from a specific asset in your Unity project, this Skill can save you time by automatically retrieving the data.

Quick Start

Run the 'assets-get-data' skill with the asset reference and desired path or view query.

Frequently Asked Questions about assets-get-data

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

FAQPage Schema
How do I extract serializable data from Unity assets?

To extract serializable data from Unity assets, you use a retrieval mechanism that accesses internal fields and properties via ReflectorNet. This allows you to automatically pull all serializable data from your project files.

Can I retrieve specific material properties from a Unity asset?

Yes, you can retrieve specific material properties from a Unity asset by specifying targeted paths. This path-scoped read approach fetches only the exact field data you need for your development or debugging scenario.

Do I need ReflectorNet to query Unity asset subtrees?

Yes, you need ReflectorNet to query Unity asset subtrees. It is a required dependency that provides the underlying access to internal asset data, enabling view queries for subtree navigation and filtering.

What is the best way to navigate and filter Unity asset data structures?

The best way to navigate and filter Unity asset data structures is by using view queries. These queries allow precise subtree navigation, letting you isolate and read specific serializable fields within complex project assets.

Why does manual Unity asset data retrieval take so much time?

Manual Unity asset data retrieval takes time because it requires individually inspecting serialized fields and properties. Automating this extraction process with targeted path reads streamlines access and significantly reduces debugging overhead.