├── .gitignore ├── Docs ├── context-menu.png ├── element-names.png ├── sortable-array.png └── sortable-drag-drop.jpg ├── EditScriptableAttribute.cs ├── Editor ├── ReorderableArrayInspector.cs └── SerializedPropExtension.cs ├── LICENSE ├── README.md └── ReorderableAttribute.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubjectNerd-Unity/ReorderableInspector/HEAD/.gitignore -------------------------------------------------------------------------------- /Docs/context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubjectNerd-Unity/ReorderableInspector/HEAD/Docs/context-menu.png -------------------------------------------------------------------------------- /Docs/element-names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubjectNerd-Unity/ReorderableInspector/HEAD/Docs/element-names.png -------------------------------------------------------------------------------- /Docs/sortable-array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubjectNerd-Unity/ReorderableInspector/HEAD/Docs/sortable-array.png -------------------------------------------------------------------------------- /Docs/sortable-drag-drop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubjectNerd-Unity/ReorderableInspector/HEAD/Docs/sortable-drag-drop.jpg -------------------------------------------------------------------------------- /EditScriptableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubjectNerd-Unity/ReorderableInspector/HEAD/EditScriptableAttribute.cs -------------------------------------------------------------------------------- /Editor/ReorderableArrayInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubjectNerd-Unity/ReorderableInspector/HEAD/Editor/ReorderableArrayInspector.cs -------------------------------------------------------------------------------- /Editor/SerializedPropExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubjectNerd-Unity/ReorderableInspector/HEAD/Editor/SerializedPropExtension.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubjectNerd-Unity/ReorderableInspector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubjectNerd-Unity/ReorderableInspector/HEAD/README.md -------------------------------------------------------------------------------- /ReorderableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubjectNerd-Unity/ReorderableInspector/HEAD/ReorderableAttribute.cs --------------------------------------------------------------------------------