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

@@ -75,6 +75,14 @@ public interface RSActor extends RSRenderable, Actor
@Override
int getLogicalHeight();
@Import("idlePoseAnimation")
@Override
void setIdlePoseAnimation(int animation);
@Import("poseAnimation")
@Override
void setPoseAnimation(int animation);
@Import("actionFrame")
int getActionFrame();

View File

@@ -38,4 +38,8 @@ public interface RSPlayerComposition extends PlayerComposition
@Import("equipmentIds")
@Override
int[] getEquipmentIds();
@Import("transformedNpcId")
@Override
void setTransformedNpcId(int id);
}