Contents

move(to:duration:)

Creates an action that moves a node to a new position.

Declaration

class func move(to location: CGPoint, duration: TimeInterval) -> SKAction

Parameters

  • location:

    The coordinates for the node’s new position.

  • duration:

    The duration of the animation.

Mentioned in

Return Value

A new action object.

Discussion

When the action executes, the node’s position property animates from its current position to its new position.

This action is not reversible; the reverse of this action has the same duration but does not move the node.

See Also

Animating a Node’s Position in a Linear Path