Jump to content

frnfrg

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by frnfrg

  1. Does this happen with all of your scml files?

    I had this happen in the same place but it was because the animations in my scml had different numbers of parts in each keyframe. As long as all keyframes in all animations share the same keyset I seem to be okay.

    --

    Heya, was testing out the plugin seems to work fine except for some reason the ref is null at some times in SpriterObject.java when I change animation.

    This causes a nullpointer:


    public void setRef(Reference ref){
    this.ref = ref;
    this.rect.set(ref.dimensions);
    }

    I changed it to this, it seems to work but i'm not exactly sure how and why the ref is null in the first place, any idea?

    	public void setRef(Reference ref){
    this.ref = ref;
    if(ref == null) return;
    this.rect.set(ref.dimensions);
    }

×
×
  • Create New...