/// <summary>
 /// creates the action with the grid size and the duration 
 /// </summary>
 public static CCFadeOutUpTiles actionWithSize(ccGridSize gridSize, float time)
 {
     CCFadeOutUpTiles pAction = new CCFadeOutUpTiles();
     if (pAction.initWithSize(gridSize, time))
     {
         return pAction;
     }
     return null;
 }
示例#2
0
        public static new CCFadeOutUpTiles actionWithSize(ccGridSize gridSize, float time)
        {
            CCFadeOutUpTiles cCFadeOutUpTile = new CCFadeOutUpTiles();

            if (cCFadeOutUpTile.initWithSize(gridSize, time))
            {
                return(cCFadeOutUpTile);
            }
            return(null);
        }
示例#3
0
        /// <summary>
        /// creates the action with the grid size and the duration
        /// </summary>
        public static CCFadeOutUpTiles actionWithSize(ccGridSize gridSize, float time)
        {
            CCFadeOutUpTiles pAction = new CCFadeOutUpTiles();

            if (pAction.initWithSize(gridSize, time))
            {
                return(pAction);
            }
            return(null);
        }
        /// <summary>
        /// creates the action with the grid size and the duration 
        /// </summary>
        /// <param name="?"></param>
        /// <returns></returns>
        public static CCFadeOutUpTiles actionWithSize(ccGridSize gridSize, float time)
        {
            CCFadeOutUpTiles pAction = new CCFadeOutUpTiles();

            if (pAction != null)
            {
                if (pAction.initWithSize(gridSize, time))
                {
                    //pAction->autorelease();
                }
                else
                {
                    //CC_SAFE_RELEASE_NULL(pAction);
                }
            }

            return pAction;
        }