@@ -84,10 +84,11 @@ void SetToScene(json &eventData, obs_source_t *transition)
84
84
/* *
85
85
* A scene transition has started.
86
86
*
87
- * @dataField transitionName | String | Scene transition name
88
- * @dataField transitionUuid | String | Scene transition UUID
89
- * @dataField toScene | String | Scene that we transitioned to
90
- * @dataField fromScene | String | Scene that we transitioned away from
87
+ * @dataField transitionName | String | Scene transition name
88
+ * @dataField transitionUuid | String | Scene transition UUID
89
+ * @dataField transitionDuration | Number | Transition duration in milliseconds
90
+ * @dataField toScene | String | Scene that we transitioned to
91
+ * @dataField fromScene | String | Scene that we transitioned away from
91
92
*
92
93
* @eventType SceneTransitionStarted
93
94
* @eventSubscription Transitions
@@ -120,9 +121,10 @@ void EventHandler::HandleSceneTransitionStarted(void *param, calldata_t *data)
120
121
*
121
122
* Note: Does not appear to trigger when the transition is interrupted by the user.
122
123
*
123
- * @dataField transitionName | String | Scene transition name
124
- * @dataField transitionUuid | String | Scene transition UUID
125
- * @dataField toScene | String | Scene that we transitioned to
124
+ * @dataField transitionName | String | Scene transition name
125
+ * @dataField transitionUuid | String | Scene transition UUID
126
+ * @dataField transitionDuration | Number | Transition duration in milliseconds
127
+ * @dataField toScene | String | Scene that we transitioned to
126
128
*
127
129
* @eventType SceneTransitionEnded
128
130
* @eventSubscription Transitions
@@ -158,10 +160,11 @@ void EventHandler::HandleSceneTransitionEnded(void *param, calldata_t *data)
158
160
*
159
161
* Note: Appears to be called by every transition, regardless of relevance.
160
162
*
161
- * @dataField transitionName | String | Scene transition name
162
- * @dataField transitionUuid | String | Scene transition UUID
163
- * @dataField toScene | String | Scene that we transitioned to
164
- * @dataField fromScene | String | Scene that we transitioned away from
163
+ * @dataField transitionName | String | Scene transition name
164
+ * @dataField transitionUuid | String | Scene transition UUID
165
+ * @dataField transitionDuration | Number | Transition duration in milliseconds
166
+ * @dataField toScene | String | Scene that we transitioned to
167
+ * @dataField fromScene | String | Scene that we transitioned away from
165
168
*
166
169
* @eventType SceneTransitionVideoEnded
167
170
* @eventSubscription Transitions
0 commit comments