IsPlaying - Scene

From the CreationKit Wiki
Revision as of 08:45, 12 February 2014 by imported>Terra Nova2 (Added note.)
Jump to navigation Jump to search

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

Notes

  • There is a possibility that this function will return true regardless if the scene is playing or not. Source

See Also