SetAllowFlying - Actor

From the CreationKit Wiki
Revision as of 15:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Actor Script

Sets whether this actor is allowed to fly or not. If not, and they are flying, will land the actor.

Syntax[edit | edit source]

Function SetAllowFlying(bool abAllowed = true) native

Parameters[edit | edit source]

  • abAllowed: Whether to allow the actor to fly or not.
    • Default: True

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Set Dragon to be allowed to fly
Dragon.SetAllowFlying()


; Set Emu to not be allowed to fly
Emu.SetAllowFlying(false)

See Also[edit | edit source]