EnableFastTravel - ObjectReference
Jump to navigation
Jump to search
Member of: ObjectReference Script
Enables or disables fast travel to this reference (which must be a map marker).
Syntax[edit | edit source]
Function EnableFastTravel(bool abEnable = true) native
Parameters[edit | edit source]
- abEnable: Whether to enable fast travel or disable it
- Default: True
Return Value[edit | edit source]
None.
Examples[edit | edit source]
; Enable fast travel to the marker
MyHouseMarkerProperty.EnableFastTravel()
; Disable fast travel to this marker
MyHouseMarkerProperty.EnableFastTravel(false)