object-modify

Modify Unity object properties using objectDiff, pathPatches, or jsonPatch methods.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill addresses the need for precise modification of Unity UnityEngine.Object properties, providing three distinct methods to alter fields and properties efficiently.

Core Features & Use Cases

  • Object Modification: Modify Unity objects with objectDiff, pathPatches, or jsonPatch methods.
  • Use Case: When you need to adjust properties of a Unity object in real-time or during runtime, this skill offers a powerful toolset to do so.

Quick Start

Run the 'object-modify' skill with the necessary input to modify a Unity object.

Frequently Asked Questions about object-modify

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

FAQPage Schema
How do I modify Unity object properties dynamically during runtime?

Modifying Unity object properties during runtime is achieved by applying objectDiff, pathPatches, or jsonPatch methods. These patching techniques enable precise atomic or comprehensive adjustments to fields and properties dynamically within a live game environment.

What is the best way to patch Unity UnityEngine.Object fields atomically?

The best way to patch Unity UnityEngine.Object fields atomically is by using the jsonPatch or pathPatches methods. These approaches ensure targeted property modifications are applied safely without overwriting unrelated object data during runtime.

Can I use objectDiff to adjust Unity game object properties comprehensively?

Yes, objectDiff allows you to adjust Unity game object properties comprehensively. This method compares the current object state against desired changes to apply broad modifications across multiple fields simultaneously during runtime.

Do I need external dependencies to alter Unity object properties with patching methods?

No external dependencies are required to alter Unity object properties with patching methods. The object-modify Skill operates independently using built-in scripts to execute objectDiff, pathPatches, and jsonPatch modifications directly within your project.

When should I use jsonPatch over pathPatches for Unity object modification?

Use jsonPatch for standardized data structure modifications, while pathPatches targets specific property paths. Both achieve precise Unity object modification, but jsonPatch handles comprehensive state updates whereas pathPatches offers granular atomic changes.