Difference between revisions of "IsPlaying - Scene"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Jlundin
(No difference)

Revision as of 14:00, 26 October 2011

Member of: Scene Script

Returns whether the scene is currently playing or not.

Syntax

bool Function IsPlaying() native

Parameters

None.

Return Value

Returns if the scene is currently playing or not.

Examples

; Is the scene playing
if CoolScene.IsPlaying()
  Debug.Trace("Cool scene is playing!")
endIf

See Also