├── .gitignore ├── AssetLibrary.cs ├── AssetLibrary.cs.meta ├── Editor.meta ├── Editor ├── AssetLibraryTool.cs ├── AssetLibraryTool.cs.meta ├── AssetLibraryWindow.cs ├── AssetLibraryWindow.cs.meta ├── BaseScriptableObjectAssetLibraryTool.cs ├── BaseScriptableObjectAssetLibraryTool.cs.meta ├── PrefabAssetLibraryTool.cs └── PrefabAssetLibraryTool.cs.meta ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/.gitignore -------------------------------------------------------------------------------- /AssetLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/AssetLibrary.cs -------------------------------------------------------------------------------- /AssetLibrary.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/AssetLibrary.cs.meta -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/AssetLibraryTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/Editor/AssetLibraryTool.cs -------------------------------------------------------------------------------- /Editor/AssetLibraryTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/Editor/AssetLibraryTool.cs.meta -------------------------------------------------------------------------------- /Editor/AssetLibraryWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/Editor/AssetLibraryWindow.cs -------------------------------------------------------------------------------- /Editor/AssetLibraryWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/Editor/AssetLibraryWindow.cs.meta -------------------------------------------------------------------------------- /Editor/BaseScriptableObjectAssetLibraryTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/Editor/BaseScriptableObjectAssetLibraryTool.cs -------------------------------------------------------------------------------- /Editor/BaseScriptableObjectAssetLibraryTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/Editor/BaseScriptableObjectAssetLibraryTool.cs.meta -------------------------------------------------------------------------------- /Editor/PrefabAssetLibraryTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/Editor/PrefabAssetLibraryTool.cs -------------------------------------------------------------------------------- /Editor/PrefabAssetLibraryTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/Editor/PrefabAssetLibraryTool.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshcamas/prefab-library/HEAD/README.md --------------------------------------------------------------------------------