我如何将这行代码转换为 swift,我试图让精灵沿着圆形路径

How do I convert this line of code to swift, Im trying to make a sprite follow a circular path

如何将这行代码转换为 swift:

// circle path
    UIBezierPath *circle = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, 100, 100) cornerRadius:100];
    SKAction *followCircle = [SKAction followPath:circle.CGPath asOffset:YES orientToPath:NO duration:5.0];
let circle = UIBezierPath(roundedRect: CGRectMake(0, 0, 100, 100), cornerRadius: 100)
let followCircle = SKAction.followPath(circle.CGPath, asOffset: true, orientToPath: false, duration: 5.0)

如您所见,代码非常相似,只是语法不同。

玩得开心Swift!