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 ループで実行されます。
このコードでエラーを見つけましたか?
ありがとう