Package com.badlogic.gdx.graphics.glutils

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


        if (bone.parent == null) continue;
        float x = skeletonX + bone.data.length * bone.m00 + bone.worldX;
        float y = skeletonY + bone.data.length * bone.m10 + bone.worldY;
        shapes.line(skeletonX + bone.worldX, skeletonY + bone.worldY, x, y);
      }
      shapes.x(skeletonX, skeletonY, 4 * scale);
    }

    if (drawRegionAttachments) {
      shapes.setColor(attachmentLineColor);
      Array<Slot> slots = skeleton.getSlots();
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.