I have an app where the user can edit an emitter node and take a screenshot to the photo library. In the settings where they can change stuff like the birthrate, angle, ect. I allow them to change the color of the emitter node.
I am using:
node.particleColor = [SKColor redColor];
and it isn't changing the color of the particles.
However when I added NSLog
statements to it and asked it what node.particleColor
was it returned 1 0 0 1
, which is what I was expecting but the node never changes color.
Any ideas as to what I can do to change its color?