[Command] randomizeFace
Posted: Thu Nov 04, 2021 7:38 pm
Actor.randomizeFace()
USE:
Randomize the actor's face and skin.
Commonly called after blendpreset (which might change the gender which resets the actor to the default face and hair for that gender)
TYPE: Command, Reference
RETURNS: /
THEME: Looks
COMPARE: randomizeHairs, blendPreset
EXAMPLE:
USE:
Randomize the actor's face and skin.
Commonly called after blendpreset (which might change the gender which resets the actor to the default face and hair for that gender)
TYPE: Command, Reference
RETURNS: /
THEME: Looks
COMPARE: randomizeHairs, blendPreset
EXAMPLE:
Code: Select all
// We want a male bodybuilder
Bodybuilder = generatePerson() // just so that we get the random stats etc, but this might generate a female
Bodybuilder.blendPreset(bodybuilder) // if the above is female, then this will reset face and hair to the default male face and hair
Actor.randomizeFace()
Actor.randomizeHairs()