Contents

repeatForever(_:)

Creates an action that repeats another action forever.

Declaration

class func repeatForever(_ action: SKAction) -> SKAction

Parameters

  • action:

    The action to execute.

Return Value

A new action object.

Discussion

When the action executes, the associated action runs to completion and then repeats.

This action is reversible; it creates a new action that is the reverse of the specified action and then repeats it forever.

See Also

Chaining Actions