public new static CCActionInterval actionWithDuration(float t) { CCFadeOutTRTiles fadeout = CCFadeOutTRTiles.actionWithSize(new ccGridSize(16, 12), t); CCFiniteTimeAction back = fadeout.reverse(); CCDelayTime delay = CCDelayTime.actionWithDuration(0.5f); return((CCActionInterval)(CCSequence.actions(fadeout, delay, back))); }
public static CCActionInterval actionWithDuration(float t) { CCFadeOutTRTiles fadeout = new CCFadeOutTRTiles(t, new CCGridSize(16, 12)); CCFiniteTimeAction back = fadeout.Reverse(); CCDelayTime delay = new CCDelayTime(0.5f); return((CCActionInterval)(new CCSequence(fadeout, delay, back))); }
public static new CCSequence ActionWithDuration(ccTime t) { var fadeout = new CCFadeOutTRTiles (new ccGridSize (16, 12), t); var back = fadeout.Reverse (); var delay = new CCDelayTime (0.5f); return (CCSequence)CCSequence.Actions (fadeout, delay, back); }