Overview
Ramdal Events lets you create and configure persistent event callbacks directly from the Inspector, just like UnityEvents. It removes UnityEvents' restrictions by allowing you to invoke virtually any method with virtually any parameter type and count, while adding powerful tools for near delegate-level performance, refactor-safe references, project-wide event tracking, and built-in diagnostics.
Features:
Invoke Virtually Any Method
Break free from UnityEvent limitations.
- Invoke public, private, protected, internal, and static methods directly from the Inspector.
- Support virtually any parameter type and unlimited parameter counts.
- Handle advanced method signatures, including return values, ref/out parameters, pointer parameters, and complex callback scenarios.
- Generate support for your own custom parameter types directly from the Editor without writing boilerplate code.
Refactor-Safe Persistent Events
Stop losing event connections after code changes.
- Rename methods or components without breaking your serialized event references.
- Uses stable identifiers instead of fragile method names.
- Keep your events working while reorganizing and improving your codebase.
Near Delegate-Level Performance
High flexibility without sacrificing runtime performance.
- Uses delegate-based execution instead of slower reflection calls during runtime.
- GC-free invocation with automatic caching and optimization.
- Automatically prepares and optimizes event data for fast execution.
- Includes IL2CPP/AOT optimization support and generic baking for maximum compatibility.
Project-Wide Event Tracking
Finally understand what is happening inside your event system.
- Search and locate every event usage across your entire project.
- See where events are invoked and where listeners are connected.
- Quickly identify missing references, unused events, and unexpected connections.
- Navigate directly to relevant objects and methods.
Built-In Diagnostics
Find problems before they become bugs.
- Automatically detect broken or invalid event connections.
- Receive clear explanations instead of cryptic errors.
- Get guidance on how to fix common issues.
- Resolve supported problems with quick fixes.
Automatic Optimization Pipeline
Let Ramdal Events handle the performance work for you.
- Automatically compile and cache event data.
- Configure optimization behavior depending on your project's needs.
- Prewarm events when required for predictable runtime performance.
Modern Inspector Workflow
Designed for speed and usability.
- View complete method information, including parameters names and types.
- Preview values before invoking callbacks.
- Invoke persistent events directly from the Editor.
- Add notes, validation, and useful workflow tools directly where you need them.
DOCUMENTATION | VIDEO TUTORIALS | DISCORD