Version: 2019.2
public string assetPath ;

説明

インポートされたアセットと、インポートしようとしているアセットに対してのパスを取得します

using UnityEngine;
using UnityEditor;

// Automatically sets Textures settings upon first import and prints the // path from where is being imported

class CustomImportSettings : AssetPostprocessor { void OnPreprocessTexture() { Debug.Log("Importing texture to: " + assetPath); TextureImporter importer = (TextureImporter)assetImporter; importer.textureFormat = TextureImporterFormat.ARGB32; importer.isReadable = true; importer.mipmapEnabled = false; } }