fullinspector icon indicating copy to clipboard operation
fullinspector copied to clipboard

Add callbacks for collection change events

Open jacobdufault opened this issue 9 years ago • 0 comments

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) {
  }
}

jacobdufault avatar Oct 09 '16 05:10 jacobdufault