ChangeAnimArchetype - Actor

From the Fallout4 CreationKit Wiki
Revision as of 15:14, 3 April 2014 by imported>RobinHood70 (→‎See Also)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Actor Script

Adds the specified AnimArchetype keyword to this actor.

Syntax

bool Function ChangeAnimArchetype(keyword apKeyword = none) native

Parameters

  • apKeyword: The AnimArchetype keyword to add to this actor.
    • Default: none

Return Value

True on success.

Examples

; Adds the AnimArchetypeConfident keyword to the actor
ActorToChange.ChangeAnimArchetype(AnimArchetypeConfident)
; Removes any existing AnimArchetype keyword from the actor (sets actor back to 'Neutral')
ActorToChange.ChangeAnimArchetype()


See Also