Exemplo n.º 1
0
 public void UpdatePlayerVisuals(PlayerVisuals playerVisuals)
 {
     playerVisuals.SetHairstyle(hair);
     playerVisuals.SetHat(hat);
     playerVisuals.SetSkinColor(skinColor);
     playerVisuals.SetClothingColor(clothingColor);
 }
Exemplo n.º 2
0
    public void SetClothingColor(Color color)
    {
        clothingColor = color;
        PlayerVisuals playerVisuals = player.GetComponent <PlayerVisuals>();

        playerVisuals.SetClothingColor(clothingColor);
    }