devtools: add transform command

This commit is contained in:
Adam
2018-06-24 17:13:07 -04:00
parent 62dec90d42
commit 784d39324c
5 changed files with 31 additions and 0 deletions

View File

@@ -99,6 +99,12 @@ public interface Actor extends Renderable
*/
LocalPoint getLocalLocation();
@VisibleForDevtools
void setIdlePoseAnimation(int animation);
@VisibleForDevtools
void setPoseAnimation(int animation);
/**
* Gets the orientation of the actor.
*

View File

@@ -24,6 +24,7 @@
*/
package net.runelite.api;
import net.runelite.api.annotations.VisibleForDevtools;
import net.runelite.api.kit.KitType;
/**
@@ -57,4 +58,7 @@ public interface PlayerComposition
* @return the kit ID
*/
int getKitId(KitType type);
@VisibleForDevtools
void setTransformedNpcId(int id);
}