Merge remote-tracking branch 'runelite/master'

This commit is contained in:
Owain van Brakel
2021-08-22 02:56:44 +02:00
10 changed files with 243 additions and 75 deletions

View File

@@ -171,6 +171,8 @@ public interface Actor extends Renderable, Locatable
*/
int getIdleRotateLeft();
void setIdleRotateLeft(int animationID);
/**
* Animation used for rotating right if the actor is also not walking
*
@@ -179,6 +181,8 @@ public interface Actor extends Renderable, Locatable
*/
int getIdleRotateRight();
void setIdleRotateRight(int animationID);
/**
* Animation used for walking
*
@@ -187,6 +191,8 @@ public interface Actor extends Renderable, Locatable
*/
int getWalkAnimation();
void setWalkAnimation(int animationID);
/**
* Animation used for rotating left while walking
*
@@ -195,6 +201,8 @@ public interface Actor extends Renderable, Locatable
*/
int getWalkRotateLeft();
void setWalkRotateLeft(int animationID);
/**
* Animation used for rotating right while walking
*
@@ -203,6 +211,8 @@ public interface Actor extends Renderable, Locatable
*/
int getWalkRotateRight();
void setWalkRotateRight(int animationID);
/**
* Animation used for an about-face while walking
*
@@ -211,6 +221,8 @@ public interface Actor extends Renderable, Locatable
*/
int getWalkRotate180();
void setWalkRotate180(int animationID);
/**
* Animation used for running
*
@@ -219,6 +231,8 @@ public interface Actor extends Renderable, Locatable
*/
int getRunAnimation();
void setRunAnimation(int animationID);
/**
* Sets an animation for the actor to perform.
*

View File

@@ -27,7 +27,7 @@ package net.runelite.api;
/**
* Represents a chat entity that has a name.
*/
public interface Nameable extends Comparable
public interface Nameable extends Comparable<Nameable>
{
/**
* The name of the player.