From ae85b7223d8c3ac1504008141423c573800f86bb Mon Sep 17 00:00:00 2001 From: Nathan Sweet Date: Sun, 1 Oct 2023 00:11:48 -0400 Subject: [PATCH] [libgdx] Javadoc. --- .../src/com/esotericsoftware/spine/Bone.java | 2 -- .../src/com/esotericsoftware/spine/Updatable.java | 9 ++++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Bone.java b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Bone.java index ab6820022..c84dded41 100644 --- a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Bone.java +++ b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Bone.java @@ -241,8 +241,6 @@ public class Bone implements Updatable { return children; } - /** Returns false when the bone has not been computed because {@link BoneData#getSkinRequired()} is true and the - * {@link Skeleton#getSkin() active skin} does not {@link Skin#getBones() contain} this bone. */ public boolean isActive () { return active; } diff --git a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Updatable.java b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Updatable.java index f68b23c10..0842a763f 100644 --- a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Updatable.java +++ b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Updatable.java @@ -36,9 +36,12 @@ public interface Updatable { /** @param physics Determines how physics and other non-deterministic updates are applied. */ public void update (Physics physics); - /** Returns false when this item has not been updated because a skin is required and the {@link Skeleton#getSkin() active skin} - * does not contain this item. + /** Returns false when this item won't be updated by + * {@link Skeleton#updateWorldTransform(com.esotericsoftware.spine.Skeleton.Physics)} because a skin is required and the + * {@link Skeleton#getSkin() active skin} does not contain this item. * @see Skin#getBones() - * @see Skin#getConstraints() */ + * @see Skin#getConstraints() + * @see BoneData#getSkinRequired() + * @see ConstraintData#getSkinRequired() */ public boolean isActive (); }