fullinspector
fullinspector copied to clipboard
Add callbacks for collection change events
For example, here is one possible API
class Foo {
[InspectorEvent(InspectorEventType.Added, "OnAdded")]
public int[] entries;
private void OnAdded(int[] array, int index, int newValue, int? previousValue) {
}
}