gpt4 book ai didi

animation - 加载声音时,Cocos2d应用程序卡住

转载 作者:行者123 更新时间:2023-12-03 00:50:40 27 4
gpt4 key购买 nike

延迟3秒后加载声音。加载此声音时,更新功能中发生的动画会停留片刻(毫秒)

- (void) onEnter
{
[super onEnter];
[self schedule:@selector(update:)];
[self performSelector:@selector(playSong) withObject:nil afterDelay:3];

}

-(void)playSong{

soundEffectID=[[SimpleAudioEngine sharedEngine] playEffect:@"song.mp3"];
}

声音文件只有400kb。

最佳答案

请在播放前使用preloadEffect,它将避免动画和帧频中的跳动。

示例:[[SimpleAudioEngine sharedEngine] preloadEffect:@"bell.wav"];

关于animation - 加载声音时,Cocos2d应用程序卡住,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21626077/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com