Background for Fallout 4
Member of the Actor script

Description

Wiki Description

Event called when the actor has finished switching races.

Documentation Comment

Event received when this actor finishes changing its race


Caveats

CK Wiki - Notes

It is possible for this event to be hit when loading a save with a player character of a different race. Your script should keep track of its state so that you don't process when you don't need to.


Examples

Event OnRaceSwitchComplete()
  Debug.Trace("This actor's race has finished changing")
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Actor

event OnRaceSwitchComplete()
    Debug.trace("Event received - OnRaceSwitchComplete")
endEvent

Related Pages


Additional References

View this event’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.