为什么我有警告?

发布于 2024-10-21 18:50:51 字数 330 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一笔一画续写前缘 2024-10-28 18:50:51

系统会警告您,您使用的方法已被弃用,并将在未来的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文