AudioImporter.forceToMono 强制到单声道

var forceToMono : bool

Description描述

Force this clip to mono?

强制这个剪辑到单声道?

// Import files containin "mono" in their name as mono.
//导入文件名称中包含mono,将作为单声道

class DetectMono extends AssetPostprocessor {
	function OnPreprocessAudio () {
		if (assetPath.Contains("mono")) {
			var audioImporter : AudioImporter = assetImporter;
			audioImporter.forceToMono = true;
		}
	}
}
最后修改:2011年5月26日 Thursday 11:01

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。