diff --git a/Assets/Live2D/Cubism/Editor/CubismAssetProcessor.cs b/Assets/Live2D/Cubism/Editor/CubismAssetProcessor.cs index cd51a6f..5742cc4 100644 --- a/Assets/Live2D/Cubism/Editor/CubismAssetProcessor.cs +++ b/Assets/Live2D/Cubism/Editor/CubismAssetProcessor.cs @@ -64,12 +64,17 @@ private static void OnPostprocessAllAssets( { var importer = CubismImporter.GetImporterAtPath(assetPath); - if (importer == null) { continue; } - + + if (assetPath.StartsWith("Assets/StreamingAssets/")) + { + Debug.LogWarning("CubismAssetProcessor : Skipping import of " + assetPath); + continue; + } + try { importer.Import();