Cocos2dx---之粒子系统

1.简单粒子的使用

    //test 粒子系统
    CCParticleSystemQuad* particle = CCParticleSystemQuad::create("firstParticle.plist");
    particle->setPosition(ccp(240, 400));
    addChild(particle);


你可能感兴趣的:(Cocos2dx---之粒子系统)