Package kku.cs.fgl.SpriteGroup

Examples of kku.cs.fgl.SpriteGroup.SFrame


   
  }

  public SFrame add(SpriteCell cell, float x, float y, boolean flip_h,
      boolean flip_v, int delay) {
    SFrame frame = new SFrame(cell, x, y, flip_h, flip_v, delay);
    frames.add(frame);
    return frame;
  }
View Full Code Here


    frames.add(frame);
    return frame;
  }
  public void add(SpriteCell ... cells) {
    for(SpriteCell c:cells){
      frames.add(new SFrame(c,0,0,false,false,-1));     
    }
  }
View Full Code Here

TOP

Related Classes of kku.cs.fgl.SpriteGroup.SFrame

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.