diff --git a/runelite-api/src/main/java/net/runelite/api/Actor.java b/runelite-api/src/main/java/net/runelite/api/Actor.java index c469343004..7f649ad15d 100644 --- a/runelite-api/src/main/java/net/runelite/api/Actor.java +++ b/runelite-api/src/main/java/net/runelite/api/Actor.java @@ -125,6 +125,23 @@ public interface Actor extends Renderable */ int getAnimation(); + /** + * Gets the secondary animation the actor is performing. + * + * @return the animation ID + * @see AnimationID + */ + int getPoseAnimation(); + + /** + * If this is equal to the pose animation, the pose animation is ignored when + * you are doing another action. + * + * @return the animation ID + * @see AnimationID + */ + int getIdlePoseAnimation(); + /** * Sets an animation for the actor to perform. *