Description
Checks if the movie screen entity is currently playing a movie. If S1 is empty, checks whether any movie
is playing; otherwise checks whether the specified movie ID is currently playing.
Parameters
| Parameter | Description |
|---|
| BaseObject | The movie screen entity to check. |
| CompareType | Equal: the condition is true when playing, NotEqual: true when not playing. |
| S1 | The movie ID to compare against. If empty, checks for any movie playing. |
Examples
| Description | BaseObject | Command | CompareType | S1 |
|---|
| Check if the movie screen is playing any movie | Target | IsPlayingMovie | Equal | |
| Check if the movie screen is playing the Horror movie | Target | IsPlayingMovie | Equal | Horror |
| Check if the movie screen is not playing the Comedy movie | Target | IsPlayingMovie | NotEqual | Comedy |