Examples of drawBar()


Examples of generic.gui.mapElement.BarElement.drawBar()

    float stunDamage = character.getStunDamage().floatValue();
    float probStun = 1 - (stunDamage / stun);

    physicalBar.drawBar(g2, 0, yLife, heightLife, widthLife, probPhysical);

    stunBar.drawBar(g2, 0, yLife - heightLife, heightLife, widthLife,
        probStun);
  }

  protected void drawPlayerColor(Graphics2D g2, BeanDocument character) {
    Player player = CampaignClient.getInstance().getBean(
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.