Package com.badlogic.gdx.graphics.glutils

Examples of com.badlogic.gdx.graphics.glutils.ShapeRenderer.circle()


    if (drawBones) {
      shapes.setColor(boneOriginColor);
      for (int i = 0, n = bones.size; i < n; i++) {
        Bone bone = bones.get(i);
        shapes.setColor(Color.GREEN);
        shapes.circle(skeletonX + bone.worldX, skeletonY + bone.worldY, 3 * scale, 8);
      }
    }

    shapes.end();
  }
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.