IsSprinting - Actor

Revision as of 10:56, 30 November 2010 by imported>Jlundin (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Actor Script Checks to see if this actor is currently sprinting. == Syntax == <source lang="papyrus"> bool Func…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Actor Script

Checks to see if this actor is currently sprinting.

SyntaxEdit

bool Function IsSprinting() native

ParametersEdit

None.

Return ValueEdit

Whether this actor is sprinting.

ExamplesEdit

if Game.GetPlayer().IsSprinting()
  Debug.Trace("Careful, you might trip and hurt yourself!")
endIf

See AlsoEdit