Package net.runelite.api
Interface SceneTilePaint
-
public interface SceneTilePaint
Represents the paint of a tile in the current scene.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getBufferLen()
int
getBufferOffset()
int
getNeColor()
int
getNwColor()
int
getRBG()
Gets the RGB value of the paint.int
getSeColor()
int
getSwColor()
int
getTexture()
int
getUvBufferOffset()
boolean
isFlat()
void
setBufferLen(int bufferLen)
void
setBufferOffset(int bufferOffset)
void
setUvBufferOffset(int bufferOffset)
-
-
-
Method Detail
-
getRBG
int getRBG()
Gets the RGB value of the paint.- Returns:
- the paint RGB
-
getSwColor
int getSwColor()
-
getSeColor
int getSeColor()
-
getNwColor
int getNwColor()
-
getNeColor
int getNeColor()
-
getTexture
int getTexture()
-
isFlat
boolean isFlat()
-
getBufferOffset
int getBufferOffset()
-
setBufferOffset
void setBufferOffset(int bufferOffset)
-
getUvBufferOffset
int getUvBufferOffset()
-
setUvBufferOffset
void setUvBufferOffset(int bufferOffset)
-
getBufferLen
int getBufferLen()
-
setBufferLen
void setBufferLen(int bufferLen)
-
-