This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Revision history | |
// Rev 1 16/MAY/2021 initial | |
// Rev 2 23/AUG/2021 add support for array property path | |
// Rev 3 23/AUG/2021 cache using type+path (s_PathHashVsType) | |
// Rev 4 23/AUG/2021 properly handling array and list by stealing code from Unity CS reference | |
using System; | |
using System.Collections.Generic; | |
using System.Reflection; | |
using UnityEditor; |