[libgdx] Javadoc.

This commit is contained in:
Nathan Sweet 2023-10-01 00:11:48 -04:00
parent 4116af02fa
commit ae85b7223d
2 changed files with 6 additions and 5 deletions

View File

@ -241,8 +241,6 @@ public class Bone implements Updatable {
return children; 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 () { public boolean isActive () {
return active; return active;
} }

View File

@ -36,9 +36,12 @@ public interface Updatable {
/** @param physics Determines how physics and other non-deterministic updates are applied. */ /** @param physics Determines how physics and other non-deterministic updates are applied. */
public void update (Physics physics); 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} /** Returns false when this item won't be updated by
* does not contain this item. * {@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#getBones()
* @see Skin#getConstraints() */ * @see Skin#getConstraints()
* @see BoneData#getSkinRequired()
* @see ConstraintData#getSkinRequired() */
public boolean isActive (); public boolean isActive ();
} }