前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >iOS实现爆炸的效果

iOS实现爆炸的效果

原创
作者头像
好派笔记
修改2021-10-29 11:05:30
7730
修改2021-10-29 11:05:30
举报
文章被收录于专栏:好派笔记

    CAEmitterLayer *emitter = [CAEmitterLayer layer];

    emitter.frame = self.view.bounds;     [self.view.layer addSublayer:emitter];     emitter.renderMode = kCAEmitterLayerAdditive;     emitter.emitterPosition = CGPointMake(emitter.frame.size.width/2, emitter.frame.size.height/2);     CAEmitterCell *cell = [[CAEmitterCell alloc] init];     cell.contents = (__bridge id)[UIImage imageNamed:@"yuandan1"].CGImage;     cell.birthRate = 150;     cell.lifetime = 5;     cell.alphaSpeed = -0.4;     cell.velocity = 50;     cell.velocityRange = 50;     cell.emissionRange = M_PI *2.0;

    emitter.emitterCells = @[cell];

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档