GetSitState - Actor
Revision as of 01:12, 2 September 2013 by imported>DayDreamer (→See Also: conditions)
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, 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