码迷,mamicode.com
首页 > 其他好文 > 详细

CAEmitterLayer 粒子效果(发射器)

时间:2017-02-27 23:28:47      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:outline   named   birt   效果   out   shape   content   order   颜色   

//创建Layer

    CAEmitterLayer *emitterLayer = [CAEmitterLayer layer];

    //边框

    emitterLayer.borderWidth = 1.0f;

    //尺寸

    emitterLayer.frame = CGRectMake(100, 100, 100, 100);

    emitterLayer.masksToBounds = YES;

    

    //发射点

    emitterLayer.emitterPosition = CGPointMake(0, 0);

    //发射模式

    emitterLayer.emitterMode = kCAEmitterLayerOutline;

    //发射形状

    emitterLayer.emitterShape = kCAEmitterLayerCircle;

 

    [self.view.layer addSublayer:emitterLayer];

    

    

    

    //创建粒子

    CAEmitterCell *cell = [CAEmitterCell emitterCell];

    

    //粒子产生率

    cell.birthRate = 2.f;

    //粒子生命周期

    cell.lifetime = 10.f;//

    //粒子速度值

    cell.velocity = 10;

    //速度变化值

    cell.velocityRange = 3.f;//7--13

    //y轴加速度

    cell.yAcceleration = 2.f;

    //发射角度

    cell.emissionRange = 4.0*M_1_PI;

    //粒子颜色

    cell.color = [UIColor blueColor].CGColor;

    //设置图片

    cell.contents = (__bridge id)[UIImage imageNamed:@"snow.png"].CGImage;

    

    emitterLayer.emitterCells = @[cell];

CAEmitterLayer 粒子效果(发射器)

标签:outline   named   birt   效果   out   shape   content   order   颜色   

原文地址:http://www.cnblogs.com/daxueshan/p/6476765.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!