tomalbrc
tomalbrc

Reputation: 188

Motion Trail effect in SpriteKit?

I'm looking for a way to create a motion trail effect very similar to this one: enter image description here

I've been searching for some time without a solution.

My first thought was to create 'clones' and modify them (blur, scale, etc) but that doesn't seem very efficient to me.

Another thought was to use an SKEmitterNode but I have no Idea which properties/values would work best for this kind of effect.

Any help is highly appreciated!

Upvotes: 1

Views: 943

Answers (1)

Khashayar Sahebkar
Khashayar Sahebkar

Reputation: 11

My first thought was to create 'clones' and modify them (blur, scale, etc) but that doesn't seem very efficient to me.

I think this is the only way. I've used this and I've seen others do it too.

I doubt it's much less efficient than using SKEmitterNode.

Upvotes: 1

Related Questions