Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Better to make SKShapeNode or SKSpriteNode in spritekit game?

I make a game in spritekit, so make a some things in SKShapeNode and of course use SKSpriteNode's in my game.
Which is better for fps and good for optimization of this game using SKShapeNode's or SKSpriteNode's?

like image 621
Nurassyl Nuridin Avatar asked Sep 30 '16 05:09

Nurassyl Nuridin


1 Answers

SKSpriteNode will be more performant. SKShapeNode has issues with it such as memory leaking.

like image 160
Mobile Ben Avatar answered Sep 19 '22 14:09

Mobile Ben