为什么我有警告?
我正在使用 cocos2d v0.99.5。我创建了 CCAnimation 并将其放入精灵中。
CCAnimation *anim = [CCAnimation animationWithName:@"blink" delay:delay frames:frames];
[sprite addAnimation:anim];
为什么我收到警告 'animationWithName:delay:frames' is deprecated 和 'addAnimation:' is deprecated?
我的程序运行得很好。我感兴趣的只是为什么我有一些警告。
I'm working with cocos2d v0.99.5. I create CCAnimation and put it in a sprite.
CCAnimation *anim = [CCAnimation animationWithName:@"blink" delay:delay frames:frames];
[sprite addAnimation:anim];
Why I have warnings 'animationWithName:delay:frames' is deprecated and 'addAnimation:' is deprecated?
My program works great. I'm interesting only why I have some warnings.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
系统会警告您,您使用的方法已被弃用,并将在未来的 cocos 版本中删除。因此,当您将 cocos2d 从 0.99.5 更新到更新版本时 - 您的程序可能不再“正常工作”。我建议您查阅文档以了解应该使用哪些方法而不是这些已弃用的方法。
You are warned that your used methods are deprecated and will be removed in future cocos releases. So when you update cocos2d from 0.99.5 to something newer - your program may not "work great" anymore. I suggest you consult the documentation to see which methods should be used instead of these deprecated ones.