From 63cef27a42ca910474385c8ff64871c08895c5c3 Mon Sep 17 00:00:00 2001 From: NathanSweet Date: Sat, 22 Oct 2016 21:53:31 +0200 Subject: [PATCH] Javadocs. --- .../src/com/esotericsoftware/spine/Animation.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Animation.java b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Animation.java index 77db30202..b9e3ee61a 100644 --- a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Animation.java +++ b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Animation.java @@ -131,9 +131,10 @@ public class Animation { /** Sets the value(s) for the specified time. * @param events May be null to not collect fired events. * @param setupPose True when the timeline is mixed with the setup pose, false when it is mixed with the current pose. - * Passing true when alpha is 1 is slightly more efficient. - * @param mixingOut True when mixing over time toward the setup or current pose, false when mixing toward the keyed pose. - * Used for timelines with instant transitions, eg draw order, attachment visibility, scale sign. */ + * Passing true when alpha is 1 is slightly more efficient for most timelines. + * @param mixingOut True when changing alpha over time toward 0 (the setup or current pose), false when changing alpha + * toward 1 (the timeline's pose). Used for timelines with instant transitions, eg draw order, attachment + * visibility, scale sign. */ public void apply (Skeleton skeleton, float lastTime, float time, Array events, float alpha, boolean setupPose, boolean mixingOut);