EnableCollisions - Debug

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Debug Script

Enables/disables collisions in the game

Syntax[edit | edit source]

Function EnableCollisions(bool abEnable = true) native global debugOnly

Parameters[edit | edit source]

  • abEnable: True to enable collisions, false to disable them
    • Default: True

Return Value[edit | edit source]

None

Examples[edit | edit source]

; Enable collisions
Debug.EnableCollisions()


; Disable collisions
Debug.EnableCollisions(false)

See Also[edit | edit source]