Swift version: 5.2
One powerful and under-used feature of SpriteKit is its ability to recolor SKSpriteNodes
dynamically. This has almost zero performance impact, which makes it perfect for having multiple-colored enemies or players. It can also be animated, meaning that you could for example make your player flash white briefly when they've been hit by an enemy.
To tint a sprite cyan, use this code:
firework.color = UIColor.cyan
firework.colorBlendFactor = 1
If you want to animate the sprite coloring, you'd use this:
let action = SKAction.colorize(with: UIColor.red, colorBlendFactor: 1, duration: 1)
SPONSORED ViRE offers discoverable way of working with regex. It provides really readable regex experience, code complete & cheat sheet, unit tests, powerful replace system, step-by-step search & replace, regex visual scheme, regex history & playground. ViRE is available on Mac & iPad.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 7.0 – see Hacking with Swift tutorial 20
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.