IsRunning - Actor

From the CreationKit Wiki
Revision as of 09:53, 30 November 2010 by imported>Jlundin (→‎See Also)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Actor Script

Checks to see if this actor is currently running (as opposed to, say, walking or sprinting).

Syntax

bool Function IsRunning() native

Parameters

None.

Return Value

Whether this actor is running.

Examples

if !Forrest.IsRunning()
  Debug.Trace("Run, Forrest, Run!")
endIf

See Also