使用CCLayer作为进度条

发布于 2024-11-26 18:37:52 字数 159 浏览 1 评论 0原文

如何在 cocos2d 中显示 CCLayer 但使其显示为进度条,即图层应从左侧出现并向右延伸直至完全显示?

可以使用一系列图像并按顺序将 CCLayer 设置为它们来完成此操作吗?如果可以,在 cocos2d 中如何完成此操作?

还有其他方法吗?

谢谢

How does one display a CCLayer in cocos2d but making it appear as a progress bar in the sense that the layer should appear from the left and extend to the right until it is fully shown?

Can this be done using a series of images and setting the CCLayer to them in a sequence, if so, how is this done in cocos2d?

Are there any other ways of doing it?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

送君千里 2024-12-03 18:37:52

您可以将图层的位置设置到屏幕边界之外,然后执行 CCMoveTo 操作。
类似于:

[layer runAction:[CCMoveTo actionWithDuration:time position:pos]];

其中 pos 是屏幕边界内的位置

You can set the position of the layer out of the screen bounds, then perform a CCMoveTo action.
Something like:

[layer runAction:[CCMoveTo actionWithDuration:time position:pos]];

where pos is the position inside the screen bounds

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