//------------------------------------------------------------ // Game Framework // Copyright © 2013-2021 loyalsoft. All rights reserved. // Homepage: http://www.game7000.com/ // Feedback: http://www.game7000.com/ //------------------------------------------------------------ namespace GameFramework.Sound { /// /// 播放声音错误码。 /// public enum PlaySoundErrorCode : byte { /// /// 未知错误。 /// Unknown = 0, /// /// 声音组不存在。 /// SoundGroupNotExist, /// /// 声音组没有声音代理。 /// SoundGroupHasNoAgent, /// /// 加载资源失败。 /// LoadAssetFailure, /// /// 播放声音因优先级低被忽略。 /// IgnoredDueToLowPriority, /// /// 设置声音资源失败。 /// SetSoundAssetFailure } }