CCSprite 中的图像淡入淡出?
是否可以淡出 CCSprite 中的图像?目前我只知道 Cocos2D 中的对象可以淡出,但我不确定这是否可能。 有什么办法可以做到这一点吗?
谢谢!
Is it possible to fade through the images in a CCSprite? Currently I only know its possible to fade through objects in Cocos2D but I wasn't sure if this was possible or not.
Is there any way to do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么,您可以使用 CCFadeOut 删除当前图像,同时在同一位置创建新的精灵,不透明度为 0,并使用 CCFadeIn 使其淡入代码>.如果同时进行,应该会收到不错的效果。
Well, you can use
CCFadeOut
to remove your current image, while, at the same time, create your new sprite at the same position with opacity 0, and make it fade in withCCFadeIn
. If you do it at the same time, you should get a nice effect.您可以使用 2 个 CCSprites 淡入多张图像。
交换精灵:
如果需要,添加延迟:
放在一起重复:
You can fade with 2 CCSprites through multiple images.
Exchange the sprite:
Add delay if needed:
Put together an repeat: