[Command] blendPreset

Post Reply
User avatar
Raddeck
LP Manager
Reactions: 1
Posts: 508
Joined: Sat Oct 16, 2021 6:22 pm
Location: LpWorld
Contact:

Post by Raddeck »

Actor.blendPreset(PresetID)


USE:
Blend this actor with a preset, usually called after generatePerson().
Presets are contained in a module's folder for the purpose, and can contain either body morphing or stat-related intel.
PresetID is the filename without the extension.


TYPE: Command, Reference
RETURNS: /
THEME: Actor Creation, Looks, Stats
COMPARE: generatePerson, generatePersonTemporary


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, so it's best to follow up with
	
Actor.randomizeFace()
Actor.randomizeHairs()
Like my work? Buy me a coffee or support me on Patreon to keep it coming. :ugeek:
-Don't PM me for support-
Top
Post Reply