Package com.esotericsoftware.spine.attachments

Examples of com.esotericsoftware.spine.attachments.AttachmentType


  private Attachment readAttachment (DataInput input, Skin skin, String attachmentName) throws IOException {
    String name = input.readString();
    if (name == null) name = attachmentName;

    AttachmentType type = AttachmentType.values()[input.readByte()];
    Attachment attachment = attachmentLoader.newAttachment(skin, type, name);

    if (attachment instanceof RegionSequenceAttachment) {
      RegionSequenceAttachment regionSequenceAttachment = (RegionSequenceAttachment)attachment;
      regionSequenceAttachment.setFrameTime(1 / input.readFloat());
View Full Code Here


  }

  private Attachment readAttachment (Skin skin, String name, JsonValue map) {
    name = map.getString("name", name);

    AttachmentType type = AttachmentType.valueOf(map.getString("type", AttachmentType.region.name()));
    Attachment attachment = attachmentLoader.newAttachment(skin, type, name);

    if (attachment instanceof RegionSequenceAttachment) {
      RegionSequenceAttachment regionSequenceAttachment = (RegionSequenceAttachment)attachment;
View Full Code Here

TOP

Related Classes of com.esotericsoftware.spine.attachments.AttachmentType

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.