Exemplo n.º 1
0
 private void hideBones() {
   for (String timelineName : _clip.hideTimelineNameMap) {
     Bone bone = _armature.getBone(timelineName);
     if (bone != null) {
       bone.hideSlots();
     }
   }
   for (String slotTimelineName : _clip.hideSlotTimelineNameMap) {
     Slot slot = _armature.getSlot(slotTimelineName);
     if (slot != null) {
       slot.resetToOrigin();
     }
   }
 }