Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

AssetPostprocessor.OnPreprocessAudio()

Description

Add this function in a subclass to get a notification just before an audio clip is being imported.

This lets you control the import settings trough code.

using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;

public class MyAudioPostprocessor : AssetPostprocessor { void OnPreprocessAudio() { if (assetPath.Contains("mono")) { AudioImporter audioImporter = (AudioImporter)assetImporter; audioImporter.forceToMono = true; } } }

Did you find this page useful? Please give it a rating: