IsPlaying - Scene
Jump to navigation
Jump to search
Member of: Scene Script
Returns whether the scene is currently playing or not.
Syntax[edit | edit source]
bool Function IsPlaying() native
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
Returns if the scene is currently playing or not.
Examples[edit | edit source]
; Is the scene playing
if CoolScene.IsPlaying()
Debug.Trace("Cool scene is playing!")
endIf