Package model_pkg

Examples of model_pkg.GfxState


        y2-yRadius - (bbox.getTop() + bbox.getHeight()/2)));   
    setBoundingBox(bbox);
    cycleDegree = 0;
    cycleStep = velocity/10.0;
    setSolidSurface(true);
    currentAnim = new GfxState(sprSheet, cloudSize);
  }
View Full Code Here


    cyclePosition1 = new Point(x, y);
    cyclePosition2 = new Point(x2, y2);
    cycleDegree = 0;
    cycleStep = velocity/10.0;
    setSolidSurface(true);
    currentAnim = new GfxState(sprSheet, cloudSize);
  }
View Full Code Here

    super(x, y, bbox);
    hMovement = 0;
    jump = false;
    crouch = false;
    shoot = false;
    currentAnim = new GfxState(sprSheet, 0);
    setMovable(true);
    setDrugable(true);
    randG = new Random();
    onGround = new OnGround();
    inAir = new InAir();
View Full Code Here

public class Ground extends GameObject {

  public Ground(int x, int y, Box bbox, SpriteSheet sprSheet) {   
    super(x, y, bbox);
    setSolidSurface(true);
    currentAnim = new GfxState(sprSheet, 0)
  }
View Full Code Here

   * @param bbox bounding box
   * @param sprSheet the sprite sheet containing the graphics for this object
   */
  public Towelie(int x, int y, Box bbox, SpriteSheet sprSheet) {   
    super(x, y, bbox);
    currentAnim = new GfxState(sprSheet, 0);
    randG = new Random();
  }
View Full Code Here

   * @param bbox
   * @param sprSheet
   */
  public Cookie(int x, int y, Box bbox, SpriteSheet sprSheet) {   
    super(x, y, bbox);
    currentAnim = new GfxState(sprSheet, 0);
    setMovable(true);
    setCollectable(true);
  }
View Full Code Here

TOP

Related Classes of model_pkg.GfxState

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.