public interface Skin
Modifier and Type | Interface and Description |
---|---|
static class |
Skin.Gender |
Modifier and Type | Method and Description |
---|---|
byte |
getBeard()
Gets the beard of the player.
|
int |
getEyeColor()
Gets the eye color of the character.
|
Skin.Gender |
getGender()
Gets the gender of the character.
|
int |
getHairColor()
Gets the hair color of the character.
|
byte |
getHaircut()
Gets the haircut of the player.
|
int |
getSkinColor()
Gets the skin color of the character.
|
byte |
getVariation()
Gets the variation of the skin.
|
void |
setBeard(byte id)
Changes the beard of the player.
|
void |
setEyeColor(int rgb)
Changes the eye color of the character.
|
void |
setGender(Skin.Gender gender)
Changes the gender of the character.
|
void |
setHairColor(int rgb)
Changes the hair color of the character.
|
void |
setHaircut(byte id)
Changes the haircut of the player.
|
void |
setSkinColor(int rgb)
Changes the skin color of the character.
|
void |
setVariation(byte variation)
Sets the variation of the skin.
|
void setGender(Skin.Gender gender)
gender
- the new gender.Skin.Gender getGender()
void setSkinColor(int rgb)
rgb
- the int RGB color value (e.g. 0xFFFFFF).int getSkinColor()
void setHairColor(int rgb)
rgb
- the int RGB color value (e.g. 0xFFFFFF).int getHairColor()
void setEyeColor(int rgb)
rgb
- the int RGB color value (e.g. 0xFFFFFF).int getEyeColor()
byte getHaircut()
byte getBeard()
void setHaircut(byte id)
id
- the haircut IDvoid setBeard(byte id)
id
- the beard IDbyte getVariation()
void setVariation(byte variation)
variation
- the new variation. Default variation is 0.