repeat(_:count:)
Creates an action that repeats another action a specified number of times.
Declaration
class func `repeat`(_ action: SKAction, count: Int) -> SKActionParameters
- action:
The action to execute.
- count:
The number of times to execute the action.
Return Value
A new action object.
Discussion
When the action executes, the associated action runs to completion and then repeats, until the count is reached.
This action is reversible; it creates a new action that is the reverse of the specified action and then repeats it the same number of times.