Description
Wiki Description
Enables or disables the player's ability to fast travel.
Documentation Comment
Enables or disables the ability to fast travel
Caveats
CK Wiki - Notes
- Fast travel is reenabled automatically when the player is moved via ObjectReference.MoveTo(...) or ObjectReference.SetPosition(...).
Parameters
boolabEnable=true
CK Wiki Description
If true, enables fast travel. Otherwise disables it.
- Default:True
Examples
; Enable fast travel
Game.EnableFastTravel(); Disable fast travel
Game.EnableFastTravel(false)Auto-Generated Example
bool myBool__abEnable
Game.EnableFastTravel(myBool__abEnable)Related Pages
- Game
- Game.FastTravel(...)
- Game.IsFastTravelEnabled()
