EnableFastTravel - ObjectReference

From the Fallout4 CreationKit Wiki
Revision as of 16:23, 14 July 2011 by imported>Plplecuyer (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' ObjectReference Script Enables or disables fast travel to this reference (which must be a map marker). == Synta…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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)

See Also[edit | edit source]