Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

AudioImporter.forceToMono

public bool forceToMono;

Description

Force this clip to mono?

    // Import files containing "mono" in their name as mono.
    class DetectMono extends AssetPostprocessor {
        function OnPreprocessAudio () {
            if (assetPath.Contains("mono")) {
                var audioImporter : AudioImporter = assetImporter;
                audioImporter.forceToMono = true;
            }
        }
    }