Example #1
0
 //Habilitar Cuerpo
 public void EnableBody()
 {
     HUDFolders.SetActive(false);
     Cube.SetActive(true);
     if (Gender == "F")
     {
         CuerpoMujer.SetActive(true);
     }
     else
     {
         CuerpoHombre.SetActive(true);
     }
 }
Example #2
0
 //Deshabilitar cuerpo
 public void DisableBody()
 {
     Cube.SetActive(false);
     CuerpoHombre.SetActive(false);
     CuerpoMujer.SetActive(false);
 }