Merge remote-tracking branch 'runelite/master'

This commit is contained in:
Owain van Brakel
2021-09-12 21:05:55 +02:00
2 changed files with 22 additions and 0 deletions

View File

@@ -105,4 +105,8 @@ public interface Model extends Renderable
boolean isClickable();
void drawFace(int face);
int[] getVertexNormalsX();
int[] getVertexNormalsY();
int[] getVertexNormalsZ();
}

View File

@@ -74,4 +74,22 @@ public interface Scene
void generateHouses();
void setRoofRemovalMode(int flags);
/**
* Get the underlay ids for the scene. The value stored is id + 1, with 0 for no underlay.
* @return
*/
byte[][][] getUnderlayIds();
/**
* Get the overlay ids for the scene. The value stored is id + 1, with 0 for no overlay.
* @return
*/
byte[][][] getOverlayIds();
/**
* Get the shapes of the tiles for the scene.
* @return
*/
byte[][][] getTileShapes();
}