docs(ci): Update generated docs - d2ddde3 [skip ci]

This commit is contained in:
Github Actions 2022-01-29 00:56:54 +00:00
parent d2ddde3229
commit e80bcad1e1
2 changed files with 71 additions and 1 deletions

View File

@ -4655,6 +4655,40 @@
} }
] ]
}, },
{
"description": "The current scene transition has changed.",
"eventType": "CurrentSceneTransitionChanged",
"eventSubscription": "Transitions",
"complexity": 3,
"rpcVersion": "1",
"deprecated": false,
"initialVersion": "5.0.0",
"category": "transitions",
"dataFields": [
{
"valueName": "transitionName",
"valueType": "String",
"valueDescription": "Name of the new transition"
}
]
},
{
"description": "The current scene transition duration has changed.",
"eventType": "CurrentSceneTransitionDurationChanged",
"eventSubscription": "Transitions",
"complexity": 2,
"rpcVersion": "1",
"deprecated": false,
"initialVersion": "5.0.0",
"category": "transitions",
"dataFields": [
{
"valueName": "transitionDuration",
"valueType": "Number",
"valueDescription": "Transition duration in milliseconds"
}
]
},
{ {
"description": "Studio mode has been enabled or disabled.", "description": "Studio mode has been enabled or disabled.",
"eventType": "StudioModeStateChanged", "eventType": "StudioModeStateChanged",

View File

@ -1268,6 +1268,9 @@ Subscription value to receive the `SceneItemTransformChanged` high-volume event.
- [InputAudioTracksChanged](#inputaudiotrackschanged) - [InputAudioTracksChanged](#inputaudiotrackschanged)
- [InputAudioMonitorTypeChanged](#inputaudiomonitortypechanged) - [InputAudioMonitorTypeChanged](#inputaudiomonitortypechanged)
- [InputVolumeMeters](#inputvolumemeters) - [InputVolumeMeters](#inputvolumemeters)
- [Transitions](#transitions)
- [CurrentSceneTransitionChanged](#currentscenetransitionchanged)
- [CurrentSceneTransitionDurationChanged](#currentscenetransitiondurationchanged)
- [Scene Items](#scene-items) - [Scene Items](#scene-items)
- [SceneItemCreated](#sceneitemcreated) - [SceneItemCreated](#sceneitemcreated)
- [SceneItemRemoved](#sceneitemremoved) - [SceneItemRemoved](#sceneitemremoved)
@ -1759,6 +1762,39 @@ A high-volume event providing volume levels of all active inputs every 50 millis
| Name | Type | Description | | Name | Type | Description |
| ---- | :---: | ----------- | | ---- | :---: | ----------- |
| inputs | Array<Object> | Array of active inputs with their associated volume levels | | inputs | Array<Object> | Array of active inputs with their associated volume levels |
## Transitions
### CurrentSceneTransitionChanged
The current scene transition has changed.
- Complexity Rating: `3/5`
- Latest Supported RPC Version: `1`
- Added in v5.0.0
**Data Fields:**
| Name | Type | Description |
| ---- | :---: | ----------- |
| transitionName | String | Name of the new transition |
---
### CurrentSceneTransitionDurationChanged
The current scene transition duration has changed.
- Complexity Rating: `2/5`
- Latest Supported RPC Version: `1`
- Added in v5.0.0
**Data Fields:**
| Name | Type | Description |
| ---- | :---: | ----------- |
| transitionDuration | Number | Transition duration in milliseconds |
## Scene Items ## Scene Items
### SceneItemCreated ### SceneItemCreated
@ -2116,7 +2152,7 @@ Studio mode has been enabled or disabled.
- [SetInputAudioTracks](#setinputaudiotracks) - [SetInputAudioTracks](#setinputaudiotracks)
- [GetInputPropertiesListPropertyItems](#getinputpropertieslistpropertyitems) - [GetInputPropertiesListPropertyItems](#getinputpropertieslistpropertyitems)
- [PressInputPropertiesButton](#pressinputpropertiesbutton) - [PressInputPropertiesButton](#pressinputpropertiesbutton)
- [Transitions](#transitions) - [Transitions](#transitions-1)
- [GetTransitionKindList](#gettransitionkindlist) - [GetTransitionKindList](#gettransitionkindlist)
- [GetSceneTransitionList](#getscenetransitionlist) - [GetSceneTransitionList](#getscenetransitionlist)
- [GetCurrentSceneTransition](#getcurrentscenetransition) - [GetCurrentSceneTransition](#getcurrentscenetransition)