10

CAEmitterLayer および CAEmitterCell インスタンスを使用してパーティクル アニメーションを作成しています。アニメーションに問題はありませんが、ゆっくりフェードアウトしてほしいです。以下のコードを使用していますが、パーティクルが突然消え、フェードアウト アニメーションはありません。

        NSString *animationPath = [NSString stringWithFormat:@"emitterCells.%@.birthRate", cell.name];
        CABasicAnimation *birthRateAnimation = [CABasicAnimation animationWithKeyPath:animationPath];
        birthRateAnimation.fromValue = [NSNumber numberWithFloat:30.0];
        birthRateAnimation.toValue = [NSNumber numberWithFloat:0.0];
        birthRateAnimation.removedOnCompletion = NO;
        birthRateAnimation.duration = 10.0;
        [emitterLayer addAnimation:birthRateAnimation forKey:@"birthRate"];

このコードは、5 つの異なるエミッタ セルに対して for ループで実行されます。

このコードでエラーを見つけましたか?

ありがとう

4

1 に答える 1

23

CAEmitterCell のアルファ速度値を -1.0/lifetime に設定します。

于 2014-08-23T11:42:28.563 に答える