[dismiss]
This wiki is a copy of the original Skyrim CK wiki created and maintained by the UESP.net. See CreationKit:Copy Notice for more info.
IsSprintingEnabled - InputEnableLayer
Jump to navigation
Jump to search
Member of: InputEnableLayer Script
Checks to see if sprinting controls are currently enabled on this layer or not.
Syntax[edit | edit source]
bool Function IsSprintingEnabled() native
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
If the sprinting controls are currently enabled on this layer or not.
Examples[edit | edit source]
; Is sprinting allowed by this layer?
if myLayer.IsSprintingEnabled()
Debug.Trace("Player can sprint (assuming no one else is blocking)!")
endIf