b2dMoviePlaying

Returns 1 if movie is playing or paused (not stopped), 0 otherwise (checks movie->playing OR movie->paused). Takes handle (movie handle from b2dLoadMovie, integer). Returns 1 if movie is playing or paused (not stopped), 0 otherwise (checks movie->playing OR movie->paused).

2D Overlay

Parameters & Returns

Parameters

handle Int

Returns

Int

Quick Summary

Returns 1 if movie is playing or paused (not stopped), 0 otherwise (checks movie->playing OR movie->paused). Takes handle (movie handle from b2dLoadMovie, integer). Returns 1 if movie is playing or paused (not stopped), 0 otherwise (checks movie->playing OR movie->paused).

Technical Exegesis...

Returns 1 if movie is playing or paused (not stopped), 0 otherwise (checks movie->playing OR movie->paused). Takes handle (movie handle from b2dLoadMovie, integer). Returns 1 if movie actively playing or paused (playback in progress, frame visible), returns 0 if movie stopped or finished (playback not active, no frame). Checks combined state (returns (movie->playing || movie->paused) ? 1 : 0), considers paused as "playing" (movie still considered active when paused, frame remains visible).

Example

Example.bam
; No example implemented yet