如何在java中使用Cocos2d创建动画?
我刚开始Cocos2d。有人可以解释一下如何创建具有多个帧的动画,其中所有帧都是不同的图像,或者如何在图像和 *.plist 文件上使用和创建?
I only started Cocos2d. Can someone explain plz how to create animation with several frames where all frames are different images or how to use and create on image and *.plist file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我用这个代码来做我的钻石动画,所以试试这个,这是在cocos2d中做动画的方法,希望它能对你有所帮助...
i use this code for my animation for diamonds so try this out this is the way to do animation in cocos2d you...hope it will help full for you...
您需要创建一个CCAnimation对象,在其中添加所有图像帧,然后创建一个CCAnimate对象,在其中添加CCAnimation对象。然后在主对象的 runAction 中使用 CCAnimate 对象。
you need to create an object of CCAnimation, add all the image frames in it, then create an object of CCAnimate add the CCAnimation object in it. then use the CCAnimate object in runAction of your main object.