Contents

scaleX(by:y:duration:)

Creates an action that adds relative values to the x and y scale values of a node.

Declaration

class func scaleX(by xScale: CGFloat, y yScale: CGFloat, duration: TimeInterval) -> SKAction

Parameters

  • xScale:

    The amount to add to the node’s x scale value.

  • yScale:

    The amount to add to the node’s y scale value.

  • duration:

    The duration of the animation.

Return Value

A new action object.

Discussion

When the action executes, the node’s xScale and yScale properties are animated to the new value.

This action is reversible; the reverse is created as if the following code is executed:

See Also

Animating the Scaling of a Node