Exemplo n.º 1
0
        public static CCSpeed actionWithAction(CCActionInterval action, float fRate)
        {
            CCSpeed speed = new CCSpeed();

            if ((speed != null) && speed.initWithAction(action, fRate))
            {
                return(speed);
            }
            return(null);
        }
Exemplo n.º 2
0
        public static CCSpeed actionWithAction(CCActionInterval action, float fRate)
        {
            CCSpeed ret = new CCSpeed();

            if (ret != null && ret.initWithAction(action, fRate))
            {
                return(ret);
            }

            return(null);
        }
Exemplo n.º 3
0
        public static CCSpeed actionWithAction(CCActionInterval action, float fRate)
        {
            CCSpeed ret = new CCSpeed();

            if (ret != null && ret.initWithAction(action, fRate))
            {
                return ret;
            }

            return null;
        }