I wasn’t trying to be funny when I wrote this comment into the code of an H-Game I was finishing up. But then I realized the comment was kind of funny. Especially because it did exactly what it says.
void ShowElf ()
{
Vector3 faceOnlyPosition;
// UNCOMMENT THIS NEXT LINE IF YOU WANT TO HAVE A SWINGING DICK ELF GIRL
//faceOnlyPosition = new Vector3(-8.82f, -4.22f, 15f);
faceOnlyPosition = new Vector3(-9.1f, -6.05f, 15f);
Vector3 faceOnlyScale;
faceOnlyScale = new Vector3(0.7f, 0.7f, 0.7f);
CharacterSide.transform.position = faceOnlyPosition;
CharacterSide.transform.localScale = faceOnlyScale;
}