im looking to add the player model to a load out screen so players can change their looks. is there a way to use the player preview model (the one on the inventory GUI) via API?
Also, i cant seem to get any of the stuff for skin's to work.
public void setSkinTest(Player player){
Skin skin = this.player.getSkin();
skin.setSkinColor(0xff0000);
}
Edit: they work but the player has to re connect to the server. only way o could get them to work was to add it to the onplayerconnect method. am i correct in thinking the player model cannot be changed once its loaded into the server?