object-get-data

Serialize Unity Object data using UnityEngine Reflector with path-scoped reads.

Updated May 3, 2026
One-click install
npx skills add https://github.com/RakameNouya/MR-Bab_10_and_Kel_3 --skill object-get-data-rakamenouya
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: object-get-data
Source: https://github.com/RakameNouya/MR-Bab_10_and_Kel_3/tree/main/.gemini/skills/object-get-data
Command: npx skills add https://github.com/RakameNouya/MR-Bab_10_and_Kel_3 --skill object-get-data-rakamenouya

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

The object-get-data Skill solves the issue of manually accessing and serializing data from Unity Objects, which can be a complex and time-consuming task.

Core Features & Use Cases

  • Data Serialization: Extracts serialized data of Unity Objects including fields and properties.
  • Path-Scoped Reads: Allows reading only specific fields or elements through paths or viewQuery.
  • Use Case: Use this Skill to easily extract data from complex Unity GameObjects without manually navigating through them.

Quick Start

Run the object-get-data Skill with the object reference and the path to the data you want to extract, e.g., unity-mcp-cli run-tool object-get-data --input '{"objectRef": "string_value", "paths": "fieldName"}'.

Frequently Asked Questions about object-get-data

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

FAQPage Schema
How do I extract serialized data from Unity Objects?

To extract serialized data from Unity Objects, use the Reflector library to perform path-scoped reads. This allows you to target specific fields and properties directly, avoiding the need to manually navigate complex GameObjects in modding workflows.

Can I read specific fields from a Unity GameObject without loading the entire object?

Yes, you can read specific fields from a Unity GameObject using path-scoped data reads. By providing a path or viewQuery parameter, you extract only the targeted serialized elements instead of processing the entire object hierarchy.

Does Unity data serialization require the UnityEngine Reflector library?

Yes, Unity data serialization for object extraction requires the UnityEngine Reflector library. It provides the necessary environment and compatible tools to access and serialize fields and properties from Unity Object instances.

What is the best way to access Unity Object properties for modding workflows?

The best way to access Unity Object properties for modding workflows is using automated data serialization. This method extracts fields and properties directly through path-scoped reads, bypassing the time-consuming task of manual object navigation.

Why does manually accessing data from complex Unity Objects take so much time?

Manually accessing data from complex Unity Objects takes time because you must navigate through deep GameObject hierarchies to find specific fields. Using a data serialization skill automates this extraction, significantly reducing the complexity.