Page 1 of 1

[Command] blendAppearanceFrom

Posted: Tue Oct 26, 2021 10:43 pm
by Raddeck
Actor.blendAppearanceFrom(Player, CurrentCompanion)


USE:
Used after generatePersonMatchRace() etc to make a child share facial features with two parents


TYPE: Command, Ref
RETURNS: none
THEME: Actor Creation
COMPARE: generatePersonMatchRace


EXAMPLE:

Code: Select all

        Actor.setActorVar(tag_Pregnant, 0)
        Actor2 = Actor.generatePersonMatchRace()
        Actor2:age => 0
        Actor2.randomizeFace()
        Actor2.randomizeHairs()

        If BioDaddy.isValid() && !BioDaddy.isCreature()
            Actor2.blendAppearanceFrom(BioDaddy, Actor)
        Endif