이런 식으로 리스트 형태 Key Value를 보여주는 딕셔너리 자료형 인스펙터화 코드 입니다. 인스펙터에서 Key Value를 수정하면 딕셔너리도 수정됩니다. ( SyncDictionaryFromInspector() ) 또 스크립트에서 딕셔너리에 Add나 Remove를 하면 인스펙터 내용이 수정됩니다.( SyncInspectorFromDictionary() ) 전체 코드 using System.Collections; using System.Collections.Generic; using UnityEditor; using UnityEngine; using System.Linq; namespace CustomDic { [System.Serializable] //[CanEditMultipleObjects] /..