Background for Fallout 4
Member of the Actor script
voidfunctionQueueUpdate(boolbDoEquipment=false, intflags=0)Native

Description

Wiki Description

Updates the entire actor from the ground-up.

INACCURACY NOTE: The parameter bFacegen does not exist in F4SE 0.7.2. The parameter name in Papyrus is bDoEquipment—which does not seem to match the description given.

Documentation Comment

Updates the entire actor from the ground-up
Using zero flag is very expensive, to update only the body use flags=0xC


Caveats

CK Wiki - Notes

  • Using zero flag is very expensive, to update only the body use `0xC` flag.

Parameters

  1. boolbDoEquipment=false

    CK Wiki Description

    Specifies the update flag to use.

  2. intflags=0


Examples

Game.GetPlayer().QueueUpdate()

Auto-Generated Example

bool myBool__bDoEquipment
int myInt__flags

myActor__toCallFunctionOn.QueueUpdate(myBool__bDoEquipment, myInt__flags)

Related Pages


Additional References

View this function’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.