IsSeatOccupied - Actor
Member of: Actor Script
Check if this actor (which should be a mount with multiple "seats") has any actor sitting in a particular seat or not. Note that this will not work for "vehicle drivers", like actors riding horses.
SyntaxEdit
bool Function IsSeatOccupied(keyword apKeyword) native
ParametersEdit
- apKeyword: The keyword representing the seat we want to check
Return ValueEdit
True if the "seat" represented by apKeyword has an actor fully seated in it (note that actors in the process of getting onto or off of the seat won't count)
ExamplesEdit
; Does the vertibird currently have a pilot?
if Vertibird.IsSeatOccupied(pilotSeatKeyword)
Debug.Trace("The pilot is seated")
endIf