Reputation: 1351
I would like to create this effect:
Here in details:
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
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