Scene#

The Scene subscription allows you to subscribe to changes of active scene.

Subscribe Message#

{
   "subscribe": "scene"
}

Change Message#

When the state of any scene changes, a message is sent out with the following parameters in the data part of the JSON object:

Attribute

Value Type

Description

Value Example

num

integer

Scene number

1

state

string

The new state of the scene: none, started, released

"started"

onstage

boolean

Whether the scene is currently affecting the output of any fixtures in the project.

true

For example:

{
   "broadcast": "scene",
   "data": {
      "num": 1,
      "onstage": true,
      "state": "started"
   }
}