示例#1
0
        /** creates an action with a Cardinal Spline array of points and tension */
        public static CCCatmullRomTo create(float dt, CCPointArray points)
        {
            CCCatmullRomTo ret = new CCCatmullRomTo();

            ret.initWithDuration(dt, points);
            return(ret);
        }
示例#2
0
        /** creates an action with a Cardinal Spline array of points and tension */
        public static CCCatmullRomBy create(float dt, CCPointArray points)
        {
            CCCatmullRomBy by = new CCCatmullRomBy();

            by.initWithDuration(dt, points);
            return(by);
        }
示例#3
0
 public virtual bool initWithDuration(float dt, CCPointArray points)
 {
     if (base.initWithDuration(dt, points, 0.5f))
     {
         return(true);
     }
     return(false);
 }
     /** initializes the action with a duration and an array of points */
     public virtual bool initWithDuration(float dt, CCPointArray points)
     {
         if (base.initWithDuration(dt, points, 0.5f))
         {
             return true;
         }
 
         return false;
     }
 /** creates an action with a Cardinal Spline array of points and tension */
 public static CCCatmullRomTo create(float dt, CCPointArray points)
 {
     CCCatmullRomTo ret = new CCCatmullRomTo();
     ret.initWithDuration(dt, points);
     return ret;
 }
 /** creates an action with a Cardinal Spline array of points and tension 
 @deprecated: This interface will be deprecated sooner or later.
 */
 public static CCCatmullRomTo actionWithDuration(float dt, CCPointArray points)
 {
     return CCCatmullRomTo.create(dt, points);
 }
示例#7
0
 /** creates an action with a Cardinal Spline array of points and tension
  * @deprecated: This interface will be deprecated sooner or later.
  */
 public static CCCatmullRomTo actionWithDuration(float dt, CCPointArray points)
 {
     return(CCCatmullRomTo.create(dt, points));
 }
示例#8
0
 /** creates an action with a Cardinal Spline array of points and tension */
 public static CCCatmullRomBy create(float dt, CCPointArray points)
 {
     CCCatmullRomBy by = new CCCatmullRomBy();
     by.initWithDuration(dt, points);
     return (by);
 }