示例#1
0
        /// <summary>
        /// Creates and initializes with a duration and a percent
        /// </summary>
        public static CCProgressTo actionWithDuration(float duration, float fPercent)
        {
            CCProgressTo pProgressTo = new CCProgressTo();

            pProgressTo.initWithDuration(duration, fPercent);

            return(pProgressTo);
        }