AudioImporter.forceToMonovar forceToMono : booleanDescriptionForce this clip to mono?
// Import files containin "mono" in their name as mono.
class DetectMono extends AssetPostprocessor { function OnPreprocessAudio () { if (assetPath.Contains("mono")) { var audioImporter : AudioImporter = assetImporter; audioImporter.forceToMono = true; } } } |
