Skip to content

animated rect mask for cocos2d-iphone (originally by georgejcook, ported to 0.99.3-rc)

Notifications You must be signed in to change notification settings

taberrr/CCMaskTo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

CCMaskTo
============

CCMaskTo is a CCIntervalAction for cocos2d-iphone written by georgejcook and slightly modified by taberrr to work with cocos2d v0.99.3-rc.

http://www.cocos2d-iphone.org/forum/topic/1306#post-7891

  Usage:

  //
  // Reveal the sprite in a "swipe from left" style mask transition
  //
  CCSprite *mySprite = [CCSprite spriteWithTexture: spriteSheet.texture rect: CGRectMake(0,0, 1,10)];
  [spriteSheet addChild: mySprite];
  mySprite.position = ccp(screenSize.width / 2 - 45, screenSize.height / 2);

  [mySprite runAction: [CCMoveBy actionWithDuration: 1 position: ccp(45, 0)]];
  [mySprite runAction: [CCMaskTo actionWithDuration: 1 rect: CGRectMake(0,0, 90,10)];


About

animated rect mask for cocos2d-iphone (originally by georgejcook, ported to 0.99.3-rc)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published