Skip to content

Commit

Permalink
AnimUtils.retargetClip(): improved log message
Browse files Browse the repository at this point in the history
  • Loading branch information
capdevon committed Sep 4, 2023
1 parent d748fcb commit 9ca6633
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion devtools/src/main/java/mygame/devtool/AnimUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ public static AnimClip retargetClip(String newClipName, AnimClip sourceClip, Arm
AnimTrack[] tracks = copyAnimTracks(sourceClip, targetArmature);
copy.setTracks(tracks);

logger.log(Level.INFO, "Copy AnimClip {0} Tracks {1}", new Object[]{newClipName, tracks.length});
logger.log(Level.INFO, "Copy AnimClip {0} Tracks {1} of {2}",
new Object[]{newClipName, tracks.length, sourceClip.getTracks().length});
return copy;
}

Expand Down

0 comments on commit 9ca6633

Please sign in to comment.