我正在尝试制作一个看起来像火球的动画,它在寻找信息的时候围绕着Siri麦克风图标。基本上它是一个围绕圆圈飞行并在其后面留下痕迹的物体。
关于如何解决这个问题的任何想法?
这是我到目前为止所拥有的:
CAKeyframeAnimation *a = [CAKeyframeAnimation animationWithKeyPath:@"position"];
a.duration = 2.0;
a.rotationMode = kCAAnimationRotateAuto;
a.path = [UIBezierPath bezierPathWithOvalInRect:self.frame].CGPath;
[test.layer addAnimation:a forKey:@"moveCircle"];
编辑:线索是艰难的部分
答案 0 :(得分:0)
为什么不在Photoshop中创建它然后旋转图像?