user594883
user594883

Reputation: 1351

Creating "fly-in" effect in Sprite-kit for SKLabels

I would like to create this effect:

http://d.pr/v/4oGc

Here in details:

enter image description here enter image description here enter image description here

in sprite-kit with SKLabelNode. So basically I would like the labels to "fly in". My first thought was to use SKAction for this but I didn't figure out if it actually can be applied this way.

Any tips for recreating that effect in Spritekit?

Upvotes: 0

Views: 160

Answers (1)

user594883
user594883

Reputation: 1351

From what I see in your link, all HUD elements share a single parent node.

On this node you can run [SKAction scaleTo:] and [SKAction fadeOutWithDuration:] simultaneously ([SKAction group:]) to achieve desired effect. – CloakedEddy

Upvotes: 1

Related Questions