Importerのコンパイルエラーが発生する
Importer生成後に下記のようなコンパイルエラーが発生する場合があります。
Assets\GameData\Importer\Importer_XXX.cs(8,36): error CS0246: The type or namespace name 'IDataImporter' could not be found (are you missing a using directive or an assembly reference?)
Assets\GameData\Importer\Importer_XXX.cs(10,26): error CS0246: The type or namespace name 'RawDataGroup' could not be found (are you missing a using directive or an assembly reference?)
Assets\GameData\Importer\Importer_XXX.cs(37,41): error CS0246: The type or namespace name 'RawDataSet' could not be found (are you missing a using directive or an assembly reference?)
こちらはImporterPathの設定において、Editorフォルダ配下ではないパスを指定していることが原因です。
ImporterPathで指定するフォルダがEditorフォルダ配下となるよう、フォルダ構成、パス指定の変更をお試しください。

コメント