using UnityEditor; namespace GFGEditor { public class TextureImporterSetting : AssetPostprocessor { void OnPreprocessTexture() { TextureImporter textureImporter = assetImporter as TextureImporter; if (textureImporter != null) { TextureAutoSet.ChangeTextureSetting(textureImporter); } } } }