
A powerful Unity Editor tool that lets you execute almost any method from any component. Supports parameters and coroutines unlocking new levels of flexibility for both developers and artists.This tool bridges the gap between code and editor by enabling you to call component methods instantly from the Unity Editor. Pass arguments (including primitive types and most Unity objects), run coroutines that can pause execution until conditions are met, and even manipulate built-in Unity properties like Transform.position via setters.Instead of hardcoding sequences of events in a script, you can design and trigger them interactively—waiting for user input, a timed delay, or in-game events—directly from the Inspector. Whether you’re a developer prototyping gameplay or an artist automating repetitive tasks, this tool can dramatically streamline your workflow and spark new creative possibilities.Asset uses Odin Serializer under Apache License 2.0; see Third-Party Notices.txt file in package for details.Parameter Support: Compatible with primitive types (int, float, bool, Enum etc.) and most Unity core types (Vector2, Vector3, Color, AnimationCurve, Gradient, Bounds, Rect, Vector2Int, etc.).Coroutine Support: Methods returning IEnumerator are executed as coroutines, allowing sequential logic with delays, user prompts, or event waits before moving to the next step.Property Access: Supports calling getters and setters for Unity properties, e.g., Transform.set_position(Vector3 newPos).Use Cases: Rapid prototyping, editor automation, testing without play mode scripting, artist-friendly scene manipulation, and custom toolchains.Execution Method: Uses C# reflection to dynamically locate and invoke methods on any component in your scene or prefab.Legal Research and Compliance- Researching Apache License 2.0 requirements- Understanding Unity Asset Store submission guidelines- Creating proper third-party attribution noticesDocumentation- Formatting and organizing documentation structure- Improving clarity and readability of user guides- Generating standard documentation templates