IsSneaking - Actor
Revision as of 09:54, 30 November 2010 by imported>Plplecuyer (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Actor Script Checks to see if this actor is currently sneaking. == Syntax == <source lang="papyrus"> bool Funct…')
Member of: Actor Script
Checks to see if this actor is currently sneaking.
Syntax[edit | edit source]
bool Function IsSneaking() native
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
Whether this actor is sneaking.
Examples[edit | edit source]
if !Ninja.IsSneaking()
Debug.Trace("This ninja isn't very good if he isn't sneaking...")
endIf