Created
January 28, 2013 12:22
-
-
Save sdabet/4655083 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CCSprite *sprite = [CCSprite spriteWithSpriteFrameName:@"mysprite.png"]; | |
sprite.blendFunc = (ccBlendFunc){GL_ONE, GL_ONE_MINUS_SRC_ALPHA}; | |
// or | |
[sprite setBlendFunc:(ccBlendFunc){GL_ONE, GL_ONE_MINUS_SRC_ALPHA}]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment