Javadoc for chain scale bone parent requirement.

This commit is contained in:
Nathan Sweet 2021-09-19 19:30:25 -10:00
parent 168bea6fdb
commit 036b02a917

View File

@ -168,7 +168,10 @@ public class PathConstraintData extends ConstraintData {
* <p>
* See <a href="http://esotericsoftware.com/spine-path-constraints#Rotate-mode">Rotate mode</a> in the Spine User Guide. */
static public enum RotateMode {
tangent, chain, chainScale;
tangent, chain,
/** When chain scale, constrained bones should all have the same parent. That way when the path constraint scales a bone, it
* doesn't affect other constrained bones. */
chainScale;
static public final RotateMode[] values = RotateMode.values();
}