GetSitState - Actor
From Creation Kit
Member of: Actor Script
Gets this actor's sit state.
Syntax
int Function GetSitState() native
Parameters
None.
Return Value
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
; Is the actor sitting? if (Sleepy.GetSitState() != 0) Debug.Trace("Sleepy is sitting (or wants to sit, or wants to get up)!") endIf