mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-19 00:06:42 +08:00
[libgdx] Javadoc.
This commit is contained in:
parent
4116af02fa
commit
ae85b7223d
@ -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;
|
||||
}
|
||||
|
||||
@ -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 ();
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user