Difference between revisions of "QueueUpdate - Actor"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
(Added F4SE member)
 
imported>Qazaaq
(added required f4se version)
 
Line 1: Line 1:
'''F4SE Member of:''' [[Actor Script]]
'''F4SE Member of:''' [[Actor Script]]
{{Template:Papyrus:RequiredF4SE|version=0.3.1}}


Updates the entire actor from the ground-up.
Updates the entire actor from the ground-up.

Latest revision as of 23:55, 20 January 2018

F4SE Member of: Actor Script
Requires F4SE version 0.3.1 or higher.

Updates the entire actor from the ground-up.

Syntax[edit | edit source]

Function QueueUpdate(bool bFacegen = false, int flags = 0) Native

Parameters[edit | edit source]

  • bFacegen: Whether to use facegen or not.
  • flags: Specifies the update flag to use.

Return Value[edit | edit source]

None.

Examples[edit | edit source]

Game.GetPlayer().QueueUpdate()

Notes[edit | edit source]

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

See Also[edit | edit source]