Make SKSpriteNode flash white with SKAction colorizeWithColor
问题 Ok so I have a sprite thats suppose to flash white when hit by something, I'm using this SKAction *changeColorAction = [SKAction colorizeWithColor:[SKColor whiteColor] colorBlendFactor:1.0 duration:1]; What happens is the sprite flashes, but instead of white, it just turns transparent. If I use any other color like redColor, blueColor, ect.. It works perfect. How can I get it to actually turn white? Thanx for the help!!! :D 回答1: Colorize with white should give you the image's original colors.