QueueUpdate - Actor

From the Fallout4 CreationKit Wiki
Revision as of 17:26, 19 April 2017 by imported>Qazaaq (Added F4SE member)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

F4SE Member of: Actor Script

Updates the entire actor from the ground-up.

Syntax

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

Parameters

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

Return Value

None.

Examples

Game.GetPlayer().QueueUpdate()

Notes

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

See Also