IsFastTravelEnabled - Game
Member of: Game Script
Checks to see if fast travel is currently enabled or not.
SyntaxEdit
bool Function IsFastTravelEnabled() native global
ParametersEdit
None.
Return ValueEdit
True if fast travel is currently enabled; False otherwise.
ExamplesEdit
; Can the player fast travel from here?
if Game.IsFastTravelEnabled()
Debug.Trace("Player can fast travel!")
endIf