ataugeron / SpriteKit-Spring

SpriteKit API reproducing UIView's spring animations with SKAction
Apache License 2.0
249 stars 32 forks source link

Chaining/Grouping/Sequencing? #7

Closed damirstuhec closed 8 years ago

damirstuhec commented 8 years ago

@ataugeron can this actions be chained/grouped/sequenced together just like basic SKActions can be?

ataugeron commented 8 years ago

Absolutely, you can use SKAction.sequence and SKAction.group. However, since this action is implemented with SKAction.customActionWithDuration, you cannot reverse it (reversedAction will just return the same action).

On Tue, Apr 26, 2016 at 10:24 AM Damir Stuhec notifications@github.com wrote:

@ataugeron https://github.com/ataugeron can this actions be chained/grouped/sequenced together just like basic SKActions can be?

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/ataugeron/SpriteKit-Spring/issues/7

damirstuhec commented 8 years ago

Ok, great. Thanks!