├── Editor ├── Filters.meta ├── Reflection.meta ├── Interface │ ├── Colors.meta │ ├── Inspectors.meta │ ├── TreeViews.meta │ ├── DaiGUIStyles.cs.meta │ ├── EditorTexture.meta │ ├── PropertyDrawers.meta │ ├── DaiGUIUtility.cs.meta │ ├── Colors │ │ ├── ColorPalette.cs.meta │ │ ├── SkinnedColor.cs.meta │ │ ├── SkinnedColor.cs │ │ └── ColorPalette.cs │ ├── EditorTexture │ │ ├── EditorTexture.cs.meta │ │ ├── EditorTextures.cs.meta │ │ ├── EditorTextures.cs │ │ └── EditorTexture.cs │ ├── TreeViews │ │ ├── ImportProfileTableItem.cs.meta │ │ ├── ImportProfileTableView.cs.meta │ │ ├── AssetTableItem.cs.meta │ │ ├── AAssetTableView.cs.meta │ │ ├── AssetSearchTableItem.cs.meta │ │ ├── AssetSearchTableView.cs.meta │ │ ├── ImportProfileAssetTableItem.cs.meta │ │ ├── ImportProfileAssetTableView.cs.meta │ │ ├── ImportProfileTableItem.cs │ │ └── AssetTableItem.cs │ ├── Inspectors │ │ ├── AssetImportProfileInspector.cs.meta │ │ ├── AssetFilterInspector.cs.meta │ │ ├── AssetFilterInspector.cs │ │ └── AssetImportProfileInspector.cs │ ├── PropertyDrawers │ │ ├── PathFilterPropertyDrawer.cs.meta │ │ ├── MaterialSetupPropertyDrawer.cs.meta │ │ ├── StringTokenFilterPropertyDrawer.cs.meta │ │ ├── NamingConventionRulePropertyDrawer.cs.meta │ │ ├── PathFilterPropertyDrawer.cs │ │ ├── NamingConventionRulePropertyDrawer.cs │ │ └── StringTokenFilterPropertyDrawer.cs │ ├── DaiGUIContent.cs.meta │ └── DaiGUIUtility.cs ├── PathConvention │ ├── Anchor.cs.meta │ ├── Template.cs.meta │ ├── GenericResolver.cs.meta │ ├── ITemplateResolver.cs.meta │ ├── ResolveException.cs.meta │ ├── NamingConventionRule.cs.meta │ ├── DuplicatePlaceholderMode.cs.meta │ ├── DuplicatePlaceholderMode.cs │ ├── ITemplateResolver.cs │ ├── Anchor.cs │ ├── ResolveException.cs │ └── GenericResolver.cs ├── Processors │ ├── ApplyPreset.cs.meta │ ├── Inspectors.meta │ ├── AddToSpriteAtlas.cs.meta │ ├── AssetProcessor.cs.meta │ ├── CreatePrefab.cs.meta │ ├── ExtractMaterials.cs.meta │ ├── PackTexture2D.cs.meta │ ├── SetAssetBundle.cs.meta │ ├── SetAssetLabels.cs.meta │ ├── SetupMaterials.cs.meta │ ├── StripMeshData.cs.meta │ ├── SetAtlasAllSettings.cs.meta │ ├── SetTextureAllSettings.cs.meta │ ├── Inspectors │ │ ├── ApplyPresetInspector.cs.meta │ │ ├── AddToSpriteAtlasInspector.cs.meta │ │ ├── AssetProcessorInspector.cs.meta │ │ ├── CreatePrefabInspector.cs.meta │ │ ├── ExtractMaterialsInspector.cs.meta │ │ ├── PackTexture2DInspector.cs.meta │ │ ├── SetAssetBundleInspector.cs.meta │ │ ├── SetAssetLabelsInspector.cs.meta │ │ ├── SetupMaterialsInspector.cs.meta │ │ ├── StripMeshDataInspector.cs.meta │ │ ├── ResetTransformInspector.cs.meta │ │ ├── SetTextureFormatInspector.cs.meta │ │ ├── SetTextureMipmapsInspector.cs.meta │ │ ├── SetTextureMipmapsInspector.cs │ │ ├── SetAssetBundleInspector.cs │ │ ├── ResetTransformInspector.cs │ │ ├── SetAssetLabelsInspector.cs │ │ ├── ExtractMaterialsInspector.cs │ │ ├── SetupMaterialsInspector.cs │ │ ├── ApplyPresetInspector.cs │ │ ├── AssetProcessorInspector.cs │ │ ├── PackTexture2DInspector.cs │ │ ├── AddToSpriteAtlasInspector.cs │ │ └── SetTextureFormatInspector.cs │ ├── AssetProcessorDescriptionAttribute.cs.meta │ ├── TargetPathType.cs │ ├── MaterialPathType.cs │ ├── AnimCompression.cs.meta │ ├── MaterialPathType.cs.meta │ ├── ResetTransform.cs.meta │ ├── SetTextureFormat.cs.meta │ ├── SetTextureMipmaps.cs.meta │ ├── TargetPathType.cs.meta │ ├── SetAssetLabels.cs │ ├── ResetTransform.cs │ ├── SetAssetBundle.cs │ ├── SetTextureMipmaps.cs │ ├── AnimCompression.cs │ ├── AssetProcessorDescriptionAttribute.cs │ ├── ExtractMaterials.cs │ └── CreatePrefab.cs ├── Utility │ ├── ColorUtility.cs.meta │ ├── LinqUtility.cs.meta │ ├── ObjectUtility.cs.meta │ ├── PathUtility.cs.meta │ ├── RectUtility.cs.meta │ ├── StringUtility.cs.meta │ ├── TextureUtility.cs.meta │ ├── EditorWindowUtility.cs.meta │ ├── AssetDatabaseUtility.cs.meta │ ├── AssetProcessorUtility.cs.meta │ ├── AssetReferenceUtility.cs.meta │ ├── ImportAssetTypeUtility.cs.meta │ ├── ReorderableListUtility.cs.meta │ ├── TargetPathTypeUtility.cs.meta │ ├── SerializedPropertyUtility.cs.meta │ ├── FileExistsAction.cs │ ├── FileExistsAction.cs.meta │ ├── StringConvention.cs.meta │ ├── AssetImportPipeline.cs.meta │ ├── AssetModificationMonitor.cs.meta │ ├── TextureUtility.cs │ ├── StringConvention.cs │ ├── PathUtility.cs │ ├── RectUtility.cs │ ├── ReorderableListUtility.cs │ ├── ObjectUtility.cs │ ├── LinqUtility.cs │ ├── AssetModificationMonitor.cs │ ├── AssetProcessorUtility.cs │ ├── ImportAssetTypeUtility.cs │ ├── ColorUtility.cs │ ├── TargetPathTypeUtility.cs │ ├── EditorWindowUtility.cs │ └── AssetDatabaseUtility.cs ├── Profiles │ ├── Import │ │ ├── AssetFilter.cs.meta │ │ ├── ImportAssetType.cs.meta │ │ ├── AssetImportProfile.cs.meta │ │ ├── ImportProfileUserData.cs.meta │ │ ├── ImportAssetType.cs │ │ ├── AssetFilter.cs │ │ └── AssetImportProfile.cs │ └── Import.meta ├── Windows │ ├── AssetSearchWindow.cs.meta │ ├── ImportProfileWindow.cs.meta │ ├── ImportProfilesWindow.cs.meta │ ├── ImportProfileAssetsViewerWindow.cs.meta │ └── AssetSearchWindow.cs ├── Config │ ├── AssetPipelineSettings.cs.meta │ ├── AssetTypeFileExtensions.cs.meta │ ├── AssetPipelineSettingsProvider.cs.meta │ ├── AssetTypeFileExtensions.cs │ └── AssetPipelineSettings.cs ├── Assets │ ├── __importeraudiodummy__.wav │ ├── __importerfontsdummy__.ttf │ ├── __importervideosdummy__.m4v │ ├── __importertexturesdummy__.png │ ├── GUIIcon.shader.meta │ ├── __importerspriteatlasesdummy__.spriteatlas.meta │ ├── __importermodelsdummy__.obj │ ├── __importervideosdummy__.m4v.meta │ ├── __importeraudiodummy__.wav.meta │ ├── __importerfontsdummy__.ttf.meta │ ├── GUIIcon.shader │ ├── __importerspriteatlasesdummy__.spriteatlas │ ├── __importermodelsdummy__.obj.meta │ └── __importertexturesdummy__.png.meta ├── Dependencies │ ├── ReflectionMagic │ │ ├── LICENSE.txt.meta │ │ ├── DynamicField.cs.meta │ │ ├── DynamicProperty.cs.meta │ │ ├── IDynamicMember.cs.meta │ │ ├── PrivateReflectionDynamicObjectBase.cs.meta │ │ ├── PrivateReflectionDynamicObjectInstance.cs.meta │ │ ├── PrivateReflectionDynamicObjectStatic.cs.meta │ │ ├── PrivateReflectionUsingDynamicExtensions.cs.meta │ │ ├── DynamicField.cs │ │ ├── DynamicProperty.cs │ │ ├── IDynamicMember.cs │ │ ├── PrivateReflectionDynamicObjectInstance.cs │ │ ├── PrivateReflectionUsingDynamicExtensions.cs │ │ └── PrivateReflectionDynamicObjectStatic.cs │ └── ReflectionMagic.meta ├── Resources │ ├── Icons │ │ ├── IgnoreCaseOff.png │ │ ├── IgnoreCaseOn.png │ │ ├── AssetBundleIcon.png │ │ ├── IgnoreCaseOff@2x.png │ │ ├── IgnoreCaseOn@2x.png │ │ └── IgnoreCaseOff.png.meta │ └── Icons.meta ├── Postprocessors │ ├── AssetImportPostprocessor.cs.meta │ └── TexturePostprocess.cs.meta ├── Assets.meta ├── Config.meta ├── Utility.meta ├── Windows.meta ├── Dependencies.meta ├── Interface.meta ├── Processors.meta ├── Profiles.meta ├── Resources.meta ├── AssetPipeline.Editor.asmdef.meta ├── PathConvention.meta ├── Postprocessors.meta ├── Filters │ ├── PathFilter.cs.meta │ ├── StringTokenFilter.cs.meta │ ├── PathFilter.cs │ └── StringTokenFilter.cs ├── Reflection │ ├── UnityEditorDynamic.cs.meta │ └── UnityEditorDynamic.cs └── AssetPipeline.Editor.asmdef ├── README.md.meta ├── README_EN.md.meta ├── Editor.meta ├── Settings.meta ├── Settings ├── Atlas.asset.meta ├── UIRaw.asset.meta ├── UI2Atlas.asset.meta ├── AssetPipelineSettings.asset.meta ├── Atlas.asset ├── UI2Atlas.asset ├── AssetPipelineSettings.asset └── UIRaw.asset └── README.md /Editor/Filters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6e955c6ff334c57a1e3671e32b7f701 3 | timeCreated: 1618158505 -------------------------------------------------------------------------------- /Editor/Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dd5ffcda6624e36ab13c42f5e3ec3d6 3 | timeCreated: 1617182411 -------------------------------------------------------------------------------- /Editor/Interface/Colors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 314f30297d154cda9077530892ddcd0f 3 | timeCreated: 1617183332 -------------------------------------------------------------------------------- /Editor/Interface/Inspectors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 863ce9a551fa4a9fbb0c55f036d4ecf3 3 | timeCreated: 1617184259 -------------------------------------------------------------------------------- /Editor/Interface/TreeViews.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e3997ac330e475bb8cb2b1cf12501d0 3 | timeCreated: 1617184237 -------------------------------------------------------------------------------- /Editor/Interface/DaiGUIStyles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4394526e40b7400498fd48b8b476139b 3 | timeCreated: 1617185252 -------------------------------------------------------------------------------- /Editor/Interface/EditorTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b995df06b0804b89b165c29f0e84fe8d 3 | timeCreated: 1617443618 -------------------------------------------------------------------------------- /Editor/Interface/PropertyDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3896a7c7815f40b5813d25794fa12a29 3 | timeCreated: 1615614037 -------------------------------------------------------------------------------- /Editor/PathConvention/Anchor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78946748c4524f5a8a909c2579597464 3 | timeCreated: 1616436725 -------------------------------------------------------------------------------- /Editor/Processors/ApplyPreset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ac655ef70114397af4946274b0afd78 3 | timeCreated: 1615028083 -------------------------------------------------------------------------------- /Editor/Processors/Inspectors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 394ba7a4311243519a74d56585c8f78d 3 | timeCreated: 1615190426 -------------------------------------------------------------------------------- /Editor/Utility/ColorUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77d49c4b780c49bbb8987b964db9f672 3 | timeCreated: 1617183159 -------------------------------------------------------------------------------- /Editor/Utility/LinqUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cd4b63853874649ad7ac7fc4eb6090c 3 | timeCreated: 1617182292 -------------------------------------------------------------------------------- /Editor/Utility/ObjectUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43b880995b9245f481e596d920a8618c 3 | timeCreated: 1617519756 -------------------------------------------------------------------------------- /Editor/Utility/PathUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a693a5c7df294fa88729756449f268a1 3 | timeCreated: 1617182139 -------------------------------------------------------------------------------- /Editor/Utility/RectUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f1e28f7958f4081bcdb825360ef3d52 3 | timeCreated: 1617519497 -------------------------------------------------------------------------------- /Editor/Utility/StringUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d793c256289e4d5bb9b191ab17bbf416 3 | timeCreated: 1617182109 -------------------------------------------------------------------------------- /Editor/Utility/TextureUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85d9423f8b6f454eb7544bd5501f9ec5 3 | timeCreated: 1617444238 -------------------------------------------------------------------------------- /Editor/Interface/DaiGUIUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e0e39cd0c644b6b9856ce63356ddf92 3 | timeCreated: 1617183591 -------------------------------------------------------------------------------- /Editor/PathConvention/Template.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4708374c98c048a6b17335115696f011 3 | timeCreated: 1616436279 -------------------------------------------------------------------------------- /Editor/Processors/AddToSpriteAtlas.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a87ab1fb8e3346d59931ee8b71822f6c 3 | timeCreated: 1616231539 -------------------------------------------------------------------------------- /Editor/Processors/AssetProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 190bb9261b8947089d9d9245c97eebc4 3 | timeCreated: 1615025544 -------------------------------------------------------------------------------- /Editor/Processors/CreatePrefab.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cf615fc668e4330a43eea8107d3b91e 3 | timeCreated: 1615028647 -------------------------------------------------------------------------------- /Editor/Processors/ExtractMaterials.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ff3abca03d143b0a6593c83cf04061f 3 | timeCreated: 1615316084 -------------------------------------------------------------------------------- /Editor/Processors/PackTexture2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dba5970f2e674607b90753051722c5fb 3 | timeCreated: 1616239179 -------------------------------------------------------------------------------- /Editor/Processors/SetAssetBundle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08513f42c23d40348750ab4cf9867586 3 | timeCreated: 1615027951 -------------------------------------------------------------------------------- /Editor/Processors/SetAssetLabels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6686c1fa1408445db3d8c8e9aa9cb50a 3 | timeCreated: 1615027867 -------------------------------------------------------------------------------- /Editor/Processors/SetupMaterials.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1b41e7dba22416390aaebee904d4551 3 | timeCreated: 1615392585 -------------------------------------------------------------------------------- /Editor/Processors/StripMeshData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a26be12f6d9c4026814d13b079fa7b95 3 | timeCreated: 1616249653 -------------------------------------------------------------------------------- /Editor/Profiles/Import/AssetFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2833c50f97654ad2b8034ab06a4dee5a 3 | timeCreated: 1615036240 -------------------------------------------------------------------------------- /Editor/Utility/EditorWindowUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4dfbbe52ba2c4728b941c1e677b4a5f5 3 | timeCreated: 1617207195 -------------------------------------------------------------------------------- /Editor/Windows/AssetSearchWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af467c149d7541dd8aadbdd26f8725c3 3 | timeCreated: 1616509364 -------------------------------------------------------------------------------- /Editor/Windows/ImportProfileWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3decbb1e47e34de49cf769ab6cbf3e88 3 | timeCreated: 1616084437 -------------------------------------------------------------------------------- /Editor/Config/AssetPipelineSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f780564f37454ff78ed14f6648c0379e 3 | timeCreated: 1615307033 -------------------------------------------------------------------------------- /Editor/Config/AssetTypeFileExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24e1b1fd1e1d441c9d6138fe871b4cfc 3 | timeCreated: 1615489668 -------------------------------------------------------------------------------- /Editor/Interface/Colors/ColorPalette.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5dad3b922b414aab829cf17fcba2fd03 3 | timeCreated: 1617183338 -------------------------------------------------------------------------------- /Editor/Interface/Colors/SkinnedColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f304d676db94a8886c241a1adb49e38 3 | timeCreated: 1617185622 -------------------------------------------------------------------------------- /Editor/PathConvention/GenericResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f8a24e4155f4e6e86532beef2145b12 3 | timeCreated: 1616436716 -------------------------------------------------------------------------------- /Editor/PathConvention/ITemplateResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c849845e49b24a5aa5d74f5279c93266 3 | timeCreated: 1616418611 -------------------------------------------------------------------------------- /Editor/PathConvention/ResolveException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f1a5ed88cc14c1a8daba653d2781c90 3 | timeCreated: 1616436729 -------------------------------------------------------------------------------- /Editor/Processors/SetAtlasAllSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 210cde82adde479b9d1f6b6f5757fe61 3 | timeCreated: 1743607449 -------------------------------------------------------------------------------- /Editor/Processors/SetTextureAllSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fe6242d75f94bfcb454b3d50cba1494 3 | timeCreated: 1736932535 -------------------------------------------------------------------------------- /Editor/Profiles/Import/ImportAssetType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb15bb990b76430a92af99814407930a 3 | timeCreated: 1615036220 -------------------------------------------------------------------------------- /Editor/Utility/AssetDatabaseUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a715c71c455410db68950f1e9713faa 3 | timeCreated: 1617182692 -------------------------------------------------------------------------------- /Editor/Utility/AssetProcessorUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca6057f7b13d4abc909c4d6e1ba36a7a 3 | timeCreated: 1615190037 -------------------------------------------------------------------------------- /Editor/Utility/AssetReferenceUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8fe5a618b604025a15ecd189da29ccc 3 | timeCreated: 1616586854 -------------------------------------------------------------------------------- /Editor/Utility/ImportAssetTypeUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b0e460162b24e8a85d2fcb2db1e5648 3 | timeCreated: 1615190022 -------------------------------------------------------------------------------- /Editor/Utility/ReorderableListUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83717b6978e147338041f03f6fa99673 3 | timeCreated: 1617183296 -------------------------------------------------------------------------------- /Editor/Utility/TargetPathTypeUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7caf801f3a2c4f6b922cfd6265fb0c94 3 | timeCreated: 1615318501 -------------------------------------------------------------------------------- /Editor/Windows/ImportProfilesWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14c6fafd5e884fe7ae62eed2c96cd20d 3 | timeCreated: 1615041007 -------------------------------------------------------------------------------- /Editor/Assets/__importeraudiodummy__.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/AssetPipeline/HEAD/Editor/Assets/__importeraudiodummy__.wav -------------------------------------------------------------------------------- /Editor/Assets/__importerfontsdummy__.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/AssetPipeline/HEAD/Editor/Assets/__importerfontsdummy__.ttf -------------------------------------------------------------------------------- /Editor/Assets/__importervideosdummy__.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/AssetPipeline/HEAD/Editor/Assets/__importervideosdummy__.m4v -------------------------------------------------------------------------------- /Editor/Config/AssetPipelineSettingsProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f919f9b96ee247a79d1e89e86bcb862d 3 | timeCreated: 1615489663 -------------------------------------------------------------------------------- /Editor/Dependencies/ReflectionMagic/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3d673404955490faca307606d7654c7 3 | timeCreated: 1617184685 -------------------------------------------------------------------------------- /Editor/Interface/EditorTexture/EditorTexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3f6cc70b9ae482f9c52949fa19ae538 3 | timeCreated: 1617443624 -------------------------------------------------------------------------------- /Editor/PathConvention/NamingConventionRule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 852dabe8d45540d3908d61fc2ab3aeb2 3 | timeCreated: 1616693690 -------------------------------------------------------------------------------- /Editor/Profiles/Import/AssetImportProfile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c962c1226e043caa066ec79a5193cc0 3 | timeCreated: 1615040537 -------------------------------------------------------------------------------- /Editor/Profiles/Import/ImportProfileUserData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f866ff3e8a984a469dea8d7b0e984dd5 3 | timeCreated: 1617730786 -------------------------------------------------------------------------------- /Editor/Resources/Icons/IgnoreCaseOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/AssetPipeline/HEAD/Editor/Resources/Icons/IgnoreCaseOff.png -------------------------------------------------------------------------------- /Editor/Resources/Icons/IgnoreCaseOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/AssetPipeline/HEAD/Editor/Resources/Icons/IgnoreCaseOn.png -------------------------------------------------------------------------------- /Editor/Utility/SerializedPropertyUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76b48fdf665b42cbb6a6844d1f3d3a11 3 | timeCreated: 1617183495 -------------------------------------------------------------------------------- /Editor/Assets/__importertexturesdummy__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/AssetPipeline/HEAD/Editor/Assets/__importertexturesdummy__.png -------------------------------------------------------------------------------- /Editor/Dependencies/ReflectionMagic/DynamicField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68dbb5f54eb14253806da5a36a5af101 3 | timeCreated: 1614412669 -------------------------------------------------------------------------------- /Editor/Interface/EditorTexture/EditorTextures.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acd92934309a434bb0a89cb5b3c69e4e 3 | timeCreated: 1617446936 -------------------------------------------------------------------------------- /Editor/Interface/TreeViews/ImportProfileTableItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3e5feaf71ce4a46af10b5065915d852 3 | timeCreated: 1616084957 -------------------------------------------------------------------------------- /Editor/Interface/TreeViews/ImportProfileTableView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c39b828c4b6c476aba87c4c08fb71522 3 | timeCreated: 1616084925 -------------------------------------------------------------------------------- /Editor/PathConvention/DuplicatePlaceholderMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3bb49ffe7344db49fe261c68916ecfa 3 | timeCreated: 1616436722 -------------------------------------------------------------------------------- /Editor/Postprocessors/AssetImportPostprocessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ec9464932754f08ba356c654d7422db 3 | timeCreated: 1615035188 -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/ApplyPresetInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae819641f1424a9ab4c112f95924f754 3 | timeCreated: 1615190416 -------------------------------------------------------------------------------- /Editor/Resources/Icons/AssetBundleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/AssetPipeline/HEAD/Editor/Resources/Icons/AssetBundleIcon.png -------------------------------------------------------------------------------- /Editor/Resources/Icons/IgnoreCaseOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/AssetPipeline/HEAD/Editor/Resources/Icons/IgnoreCaseOff@2x.png -------------------------------------------------------------------------------- /Editor/Resources/Icons/IgnoreCaseOn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/AssetPipeline/HEAD/Editor/Resources/Icons/IgnoreCaseOn@2x.png -------------------------------------------------------------------------------- /Editor/Dependencies/ReflectionMagic/DynamicProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5faf10d9dcb4edebb2b42b18bd6cd20 3 | timeCreated: 1614412580 -------------------------------------------------------------------------------- /Editor/Dependencies/ReflectionMagic/IDynamicMember.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d7038a4fc7d4cb4a6b7b0c7d55e4915 3 | timeCreated: 1614412434 -------------------------------------------------------------------------------- /Editor/Processors/AssetProcessorDescriptionAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f924e112f994097827661f9242f2499 3 | timeCreated: 1615189995 -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/AddToSpriteAtlasInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43adedbd9a3d47b4916ae236d18023a2 3 | timeCreated: 1616234410 -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/AssetProcessorInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46f9f96e46e2450a86d8e3838635278d 3 | timeCreated: 1616930534 -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/CreatePrefabInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb09168db41e4861abc1349cc8f1f7ea 3 | timeCreated: 1615191622 -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/ExtractMaterialsInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d45cd76307f34ebdbd8031af16bfd16e 3 | timeCreated: 1615318094 -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/PackTexture2DInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7df496528a6b49aea9233a89e26324af 3 | timeCreated: 1616245680 -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/SetAssetBundleInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc870b4bbd4d47ca988f5f991f53b92b 3 | timeCreated: 1615191812 -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/SetAssetLabelsInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78c4de3bf5824fc483ffd759629382ca 3 | timeCreated: 1615191860 -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/SetupMaterialsInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adb83e4c654b40a9b22a34cf19783ae7 3 | timeCreated: 1615402808 -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/StripMeshDataInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cdf7570570f4783af576b744d05382d 3 | timeCreated: 1616251725 -------------------------------------------------------------------------------- /Editor/Interface/Inspectors/AssetImportProfileInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d33a69b0b3894097ba20fe4343c453cf 3 | timeCreated: 1615118474 -------------------------------------------------------------------------------- /Editor/Interface/PropertyDrawers/PathFilterPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69636062684b4bbbba9c02f82a9a45cc 3 | timeCreated: 1615614054 -------------------------------------------------------------------------------- /Editor/Interface/PropertyDrawers/MaterialSetupPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4426de23c4d42609023b980b1fe1922 3 | timeCreated: 1615630205 -------------------------------------------------------------------------------- /Editor/Interface/PropertyDrawers/StringTokenFilterPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02d203835c04466ab488d285805823cd 3 | timeCreated: 1616007050 -------------------------------------------------------------------------------- /Editor/Interface/PropertyDrawers/NamingConventionRulePropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9b329a1c63b4cbfb9497d5aca1733a9 3 | timeCreated: 1616837940 -------------------------------------------------------------------------------- /Editor/Dependencies/ReflectionMagic/PrivateReflectionDynamicObjectBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2039252c10e9433bb79370a85f8c57bc 3 | timeCreated: 1614412751 -------------------------------------------------------------------------------- /Editor/Dependencies/ReflectionMagic/PrivateReflectionDynamicObjectInstance.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b67f645197141d3b0b97f241795d86e 3 | timeCreated: 1614412855 -------------------------------------------------------------------------------- /Editor/Dependencies/ReflectionMagic/PrivateReflectionDynamicObjectStatic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d265b6ac6eb4cf79a0cd19522cc0048 3 | timeCreated: 1614412884 -------------------------------------------------------------------------------- /Editor/Dependencies/ReflectionMagic/PrivateReflectionUsingDynamicExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4d754840c2f4483840378ce4e47cfce 3 | timeCreated: 1614412927 -------------------------------------------------------------------------------- /Editor/Utility/FileExistsAction.cs: -------------------------------------------------------------------------------- 1 | namespace AssetPipeline 2 | { 3 | public enum FileExistsAction 4 | { 5 | Skip, 6 | Overwrite, 7 | UniquePath 8 | } 9 | } -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 020a912985304e84b983ce87119ea177 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /README_EN.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67b9f434d01373749a904891e0c02df8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f584a1ca13e1eeb41ab58acdc663b221 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/PathConvention/DuplicatePlaceholderMode.cs: -------------------------------------------------------------------------------- 1 | namespace AssetPipeline.NamingConvention 2 | { 3 | public enum DuplicatePlaceholderMode 4 | { 5 | Relaxed = 0, 6 | Strict = 1 7 | } 8 | } -------------------------------------------------------------------------------- /Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce4ca4e838b15914881031d7d3851e68 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e26ef95de44842241b67f5283a4b3cac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Config.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9883881e3ea9b1f44be841f2a8683b3f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c837062ef269974d961528dc25619f0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2522b913f900244ba8ca084359d4686 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Dependencies.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78e8d3bb4c3ff2d4e8fbc491c4d23b44 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Interface.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 503d0a05d15bc4b409cb716609e8888f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Processors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fc4e8e3078e1c243987264546b28fef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Profiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ce2e5d34c137764aaef36a7003cfb39 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 943052ade1106184cb4c54f5ca4b7296 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/AssetPipeline.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78deed8cd4a24224ba974ce4dd031303 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Editor/PathConvention.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40c2ad6919913a2449f58d25ec9d888d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Postprocessors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f104796c275a18f449058c6954d7f61c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Profiles/Import.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf9cfc134db5eea4591da79f9a8fd5d7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Resources/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13d514edbe5e29943aeeeaf88e23fb5c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/PathConvention/ITemplateResolver.cs: -------------------------------------------------------------------------------- 1 | namespace AssetPipeline.NamingConvention 2 | { 3 | public interface ITemplateResolver 4 | { 5 | Template Get(string templateName, Template defaultValue = null); 6 | } 7 | } -------------------------------------------------------------------------------- /Editor/Dependencies/ReflectionMagic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e5f3940eb4d9a94999b47c4136f00db 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Settings/Atlas.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62450739c39c48641afbfb386925dd93 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Settings/UIRaw.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7023ed9609818e4fb819f52d9d9fcb6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Settings/UI2Atlas.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06b2505c9ed5700428904d6cb25c072f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Settings/AssetPipelineSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0d1d0d675ba21145a0eccd4706f9b2b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Assets/GUIIcon.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fea759951566524c9db7aa2a7d3c7b1 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Editor/PathConvention/Anchor.cs: -------------------------------------------------------------------------------- 1 | namespace AssetPipeline.NamingConvention 2 | { 3 | public enum Anchor 4 | { 5 | Contains = 0, 6 | Start = 1, 7 | End = 2, 8 | Exact = 3, 9 | AllPaths = 4, 10 | Regex= 5, 11 | } 12 | } -------------------------------------------------------------------------------- /Editor/Processors/TargetPathType.cs: -------------------------------------------------------------------------------- 1 | namespace AssetPipeline.Processors 2 | { 3 | public enum TargetPathType 4 | { 5 | SameAsAsset = 0, 6 | ParentFolder = 1, 7 | Relative = 2, 8 | Absolute = 3, 9 | TargetFolder = 4 10 | } 11 | } -------------------------------------------------------------------------------- /Editor/Assets/__importerspriteatlasesdummy__.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c65521958b39b64fb6a45166bbef886 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4343727234628468602 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Editor/Processors/MaterialPathType.cs: -------------------------------------------------------------------------------- 1 | namespace AssetPipeline.Processors 2 | { 3 | internal enum MaterialPathType 4 | { 5 | SameAsAsset = 0, 6 | MaterialFolderWithAsset = 1, 7 | Relative = 2, 8 | Absolute = 3, 9 | TargetFolder = 4 10 | } 11 | } -------------------------------------------------------------------------------- /Editor/Filters/PathFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d509822c272619f41a58e0474dbcce83 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Interface/DaiGUIContent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae9cc3ba878bbc143b75161358fce0ea 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Utility/FileExistsAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e938bf92d2371042bb19aebcc47aba9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Utility/StringConvention.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 806dac78bed05324887834c4ee9da2df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Filters/StringTokenFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 691b0457121abd44889a38bffa687d7a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Processors/AnimCompression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1795ae128aa7cd4dbaa3c5428ab07c2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Processors/MaterialPathType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5db835fa9e5aa124c8ac63f39fce1924 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Processors/ResetTransform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f6f178b99bb0f4095e2bb6ee7f0ecb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Processors/SetTextureFormat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 707336b546597574a98d78d0e02c7b14 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Processors/SetTextureMipmaps.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c610b5c40b622d448a1aecd79243a513 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Processors/TargetPathType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57bf8661e38b4e6418749202b9ba2895 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Reflection/UnityEditorDynamic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f18575055ba5824486633bdc0a50d6e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Utility/AssetImportPipeline.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 194c41233c576df4b9330fb4e5663645 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Interface/TreeViews/AssetTableItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e19647b9bd61f8543b07a3c067d37484 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Postprocessors/TexturePostprocess.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3a03a52035dd694a98cf194dad859f2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Utility/AssetModificationMonitor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5d96dca40d210f48a6fc7c95e0ed639 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Interface/TreeViews/AAssetTableView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32585b95a2162944697d98195fd33888 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Windows/ImportProfileAssetsViewerWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db8ae286ebf57434e9c200a5b356ff09 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Interface/Inspectors/AssetFilterInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70c2260d984d4c945a04baca6c7d91b6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Interface/TreeViews/AssetSearchTableItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fec106a2c13ea934aa898814ce825438 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Interface/TreeViews/AssetSearchTableView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a962def1a3b55f845b4840ce1aca075a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Interface/TreeViews/ImportProfileAssetTableItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b318fd23cdc65046a6516bb060737f2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Interface/TreeViews/ImportProfileAssetTableView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2e6e5e969d67914b96494599e1854cd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/ResetTransformInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bc8698bded6b26429d862e2392c5e8a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/SetTextureFormatInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c54c51a2c19280f4eb20bf7c010ffc71 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Processors/Inspectors/SetTextureMipmapsInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cf0f85ddfaf8b043bcec9738e859e34 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Editor/Assets/__importermodelsdummy__.obj: -------------------------------------------------------------------------------- 1 | # Blender v2.79 (sub 0) OBJ File: '' 2 | # www.blender.org 3 | mtllib __importerdummy__.mtl 4 | o Plane 5 | v -1.002917 -0.012019 1.021426 6 | v 0.997083 -0.012019 1.021426 7 | v -1.002917 -0.012019 -0.978574 8 | v 0.997083 -0.012019 -0.978574 9 | vn 0.0000 1.0000 0.0000 10 | usemtl None 11 | s off 12 | f 1//1 2//1 4//1 3//1 13 | -------------------------------------------------------------------------------- /Editor/Assets/__importervideosdummy__.m4v.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e55dc86e52ae26747a26b33bb077a601 3 | VideoClipImporter: 4 | externalObjects: {} 5 | serializedVersion: 3 6 | frameRange: 0 7 | startFrame: -1 8 | endFrame: -1 9 | colorSpace: 0 10 | deinterlace: 0 11 | encodeAlpha: 0 12 | flipVertical: 0 13 | flipHorizontal: 0 14 | importAudio: 1 15 | targetSettings: {} 16 | userData: 17 | assetBundleName: 18 | assetBundleVariant: 19 | -------------------------------------------------------------------------------- /Editor/AssetPipeline.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AssetPipeline.Editor", 3 | "rootNamespace": "", 4 | "references": [ 5 | "GUID:343deaaf83e0cee4ca978e7df0b80d21", 6 | "GUID:2bafac87e7f4b9b418d9448d219b01ab" 7 | ], 8 | "includePlatforms": [ 9 | "Editor" 10 | ], 11 | "excludePlatforms": [], 12 | "allowUnsafeCode": true, 13 | "overrideReferences": false, 14 | "precompiledReferences": [], 15 | "autoReferenced": true, 16 | "defineConstraints": [], 17 | "versionDefines": [], 18 | "noEngineReferences": false 19 | } -------------------------------------------------------------------------------- /Editor/Assets/__importeraudiodummy__.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bc3da92ea2ad0c4ba85b4251ce81817 3 | timeCreated: 1494625790 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /Editor/Assets/__importerfontsdummy__.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8190485d3da66ce4783cee6ff099dfa4 3 | timeCreated: 1509347474 4 | licenseType: Pro 5 | TrueTypeFontImporter: 6 | externalObjects: {} 7 | serializedVersion: 4 8 | fontSize: 16 9 | forceTextureCase: -2 10 | characterSpacing: 0 11 | characterPadding: 1 12 | includeFontData: 1 13 | fontName: LCDMono2 14 | fontNames: 15 | - 16 | fallbackFontReferences: [] 17 | customCharacters: 18 | fontRenderingMode: 0 19 | ascentCalculationMode: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /Editor/Reflection/UnityEditorDynamic.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using UnityEditor; 4 | using AssetPipeline.ReflectionMagic; 5 | 6 | namespace AssetPipeline 7 | { 8 | internal static class UnityEditorDynamic 9 | { 10 | public static readonly Assembly UnityEditorAssembly; 11 | public static readonly dynamic EditorGUIUtility; 12 | 13 | static UnityEditorDynamic() 14 | { 15 | UnityEditorAssembly = typeof(Editor).Assembly; 16 | EditorGUIUtility = typeof(EditorGUIUtility).AsDynamicType(); 17 | } 18 | } 19 | 20 | } -------------------------------------------------------------------------------- /Editor/PathConvention/ResolveException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace AssetPipeline.NamingConvention 4 | { 5 | public class ResolveException : Exception 6 | { 7 | public ResolveException(string message) : base(message) 8 | { 9 | } 10 | } 11 | 12 | public class ValueException : Exception 13 | { 14 | public ValueException(string message) : base(message) 15 | { 16 | } 17 | } 18 | 19 | public class ParseException : Exception 20 | { 21 | public ParseException(string message) : base(message) 22 | { 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /Editor/Interface/TreeViews/ImportProfileTableItem.cs: -------------------------------------------------------------------------------- 1 | using AssetPipeline.Import; 2 | using UnityEditor; 3 | using UnityEditor.IMGUI.Controls; 4 | 5 | namespace AssetPipeline 6 | { 7 | internal class ImportProfileTableItem : TreeViewItem 8 | { 9 | public readonly AssetImportProfile Profile; 10 | public readonly SerializedObject SerializedObject; 11 | 12 | public ImportProfileTableItem(int id, int depth, AssetImportProfile profile) 13 | : base(id, depth, profile.name) 14 | { 15 | Profile = profile; 16 | SerializedObject = new SerializedObject(Profile); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Editor/Utility/TextureUtility.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace AssetPipeline 4 | { 5 | internal static class TextureUtility 6 | { 7 | public static Texture2D LoadImage(int width, int height, byte[] bytes) 8 | { 9 | try 10 | { 11 | var t = new Texture2D(width, height, TextureFormat.ARGB32, false, true); 12 | t.LoadImage(bytes); 13 | return t; 14 | } 15 | catch 16 | { 17 | var t = new Texture2D(1, 1); 18 | t.SetPixel(0, 0, Color.magenta); 19 | t.Apply(); 20 | return t; 21 | } 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /Editor/Utility/StringConvention.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace AssetPipeline 4 | { 5 | public enum StringConvention 6 | { 7 | None = 0, 8 | CamelCase = 1 << 0, 9 | PascalCase = 1 << 1, 10 | SnakeCase = 1 << 2, 11 | UpperSnakeCase = 1 << 3, 12 | KebabCase = 1 << 4, 13 | LowerCase = 1 << 5, 14 | UpperCase = 1 << 6, 15 | } 16 | 17 | [Flags] 18 | public enum StringConventionFlags 19 | { 20 | None = 0, 21 | CamelCase = 1 << 0, 22 | PascalCase = 1 << 1, 23 | SnakeCase = 1 << 2, 24 | UpperSnakeCase = 1 << 3, 25 | KebabCase = 1 << 4, 26 | LowerCase = 1 << 5, 27 | UpperCase = 1 << 6, 28 | } 29 | } -------------------------------------------------------------------------------- /Editor/Utility/PathUtility.cs: -------------------------------------------------------------------------------- 1 | using System.IO; 2 | 3 | namespace AssetPipeline 4 | { 5 | internal static class PathUtility 6 | { 7 | public static void CreateParentDirectoryIfNeeded(string path) 8 | { 9 | CreateDirectoryIfNeeded(Directory.GetParent(path).FullName); 10 | } 11 | 12 | public static void CreateDirectoryIfNeeded(string path) 13 | { 14 | if (!Directory.Exists(path)) 15 | { 16 | Directory.CreateDirectory(path); 17 | } 18 | } 19 | 20 | public static string FixPathSeparators(this string path) 21 | { 22 | return path.Replace(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar); 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /Editor/Utility/RectUtility.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace AssetPipeline 4 | { 5 | internal static class RectUtility 6 | { 7 | public static Rect Pad(this Rect rect, float left, float right, float top, float bottom) 8 | { 9 | rect.xMin += left; 10 | rect.xMax -= right; 11 | rect.yMin += top; 12 | rect.yMax -= bottom; 13 | return rect; 14 | } 15 | 16 | public static Rect Pad(this Rect rect, float horizontal, float vertical) 17 | { 18 | return Pad(rect, horizontal, horizontal, vertical, vertical); 19 | } 20 | 21 | public static Rect Pad(this Rect rect, float padding) 22 | { 23 | return Pad(rect, padding, padding, padding, padding); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /Editor/Processors/SetAssetLabels.cs: -------------------------------------------------------------------------------- 1 | using System.Linq; 2 | using AssetPipeline.Import; 3 | using UnityEditor; 4 | using UnityEngine; 5 | 6 | namespace AssetPipeline.Processors 7 | { 8 | [AssetProcessorDescription("FilterByLabel@2x")] 9 | public class SetAssetLabels : AssetProcessor 10 | { 11 | [SerializeField] string[] labels; 12 | 13 | public override void OnPostprocess(Object asset, string assetPath) 14 | { 15 | var assetLabels = AssetDatabase.GetLabels(asset).ToHashSet(); 16 | assetLabels.AddRange(labels); 17 | AssetDatabase.SetLabels(asset, assetLabels.ToArray()); 18 | ImportProfileUserData.AddOrUpdateProcessor(assetPath, this); 19 | Debug.Log($"[{GetName()}] Labels \"{string.Join("\", \"", labels)}\" set for {assetPath}"); 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /Editor/Utility/ReorderableListUtility.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | 3 | namespace AssetPipeline 4 | { 5 | internal static class ReorderableListUtility 6 | { 7 | public static bool HasSelection(this UnityEditorInternal.ReorderableList list) 8 | { 9 | return list.index > -1 && ((list.serializedProperty != null && list.serializedProperty.arraySize > list.index) || (list.list != null && list.list.Count > list.index)); 10 | } 11 | 12 | public static SerializedProperty GetArrayElement(this UnityEditorInternal.ReorderableList list, int index) 13 | { 14 | if (list.serializedProperty != null && list.serializedProperty.arraySize > index) 15 | { 16 | return list.serializedProperty.GetArrayElementAtIndex(index); 17 | } 18 | 19 | return null; 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /Editor/Config/AssetTypeFileExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using AssetPipeline.Import; 4 | using UnityEngine; 5 | 6 | namespace AssetPipeline 7 | { 8 | [Serializable] 9 | public class AssetTypeFileExtensions 10 | { 11 | [SerializeField] ImportAssetType m_AssetType; 12 | [SerializeField] List m_FileExtensions = new List(); 13 | 14 | public AssetTypeFileExtensions(ImportAssetType assetType, params string[] fileExtensions) 15 | { 16 | m_AssetType = assetType; 17 | m_FileExtensions.AddRange(fileExtensions); 18 | } 19 | 20 | public ImportAssetType AssetType 21 | { 22 | get => m_AssetType; 23 | set => m_AssetType = value; 24 | } 25 | 26 | public List FileExtensions => m_FileExtensions; 27 | } 28 | } -------------------------------------------------------------------------------- /Editor/PathConvention/GenericResolver.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace AssetPipeline.NamingConvention 4 | { 5 | public class GenericResolver : ITemplateResolver 6 | { 7 | public List