没有 cocos2D 的 xcode iphone 粒子
不使用cocos 2D 是否可以有粒子?我知道粒子设计器,但我们必须将它与 cocos 2D 一起使用。没有cocos 2D如何制作粒子?
is it possible to have particles without using cocos 2D. I know particle designer but we have to use it with cocos 2D. How can I make particles without cocos 2D ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过生成图像并将其添加到数组中来完成此操作,这使得对图像进行动画处理或对其执行任何操作变得非常容易。
这会在任何地方创建一个黑色图像并将其添加到数组中。
然后,您可以创建一个计时器并每秒生成图像!
You can do it by spawning an image and adding it to an array, which makes it extremly easy to animate the image or do whatever with it.
That creates a black image wherever and adds it to an array.
Then, you can make a timer and spawn the image every second!
您想直接转到 71Squared。他提供了在不使用 Cocos2d 的情况下创建非常酷的粒子引擎的视频。然后,一旦您的粒子发射器开始工作,您就可以继续创建一个简单的类来存储粒子集(如果您愿意) - 我为我的应用程序这样做了。
You want to go right to 71Squared. He provides videos of creating a very cool particle engine without Cocos2d. Then, once you have your particle emitter workin, you can go ahead and create a simple class to store the particle sets if you want - I did this for my app.