GetSitState - Actor

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Actor Script

Gets this actor's sit state.

Syntax[edit | edit source]

int Function GetSitState() native

Parameters[edit | edit source]

None.

Return Value[edit | edit source]

The actor's current sit state.

The following values are returned:

  • 4: Sitting, wants to stand
  • 3: Sitting
  • 2: Not sitting, in the process of sitting down (playing the animation)
  • 1: Not sitting, wants to sit
  • 0: Not sitting

Examples[edit | edit source]

; Is the actor sitting?
if (Sleepy.GetSitState() != 0)
  Debug.Trace("Sleepy is sitting (or wants to sit, or wants to get up)!")
endIf

See Also[edit | edit source]