@@ -24,8 +24,10 @@ with this program. If not, see <https://www.gnu.org/licenses/>
24
24
*
25
25
* Scenes only
26
26
*
27
- * @requestField ?sceneName | String | Name of the scene to get the items of
28
- * @requestField ?sceneUuid | String | UUID of the scene to get the items of
27
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
28
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
29
+ * @requestField ?sceneName | String | Name of the scene to get the items of
30
+ * @requestField ?sceneUuid | String | UUID of the scene to get the items of
29
31
*
30
32
* @responseField sceneItems | Array<Object> | Array of scene items in the scene
31
33
*
@@ -57,8 +59,10 @@ RequestResult RequestHandler::GetSceneItemList(const Request &request)
57
59
*
58
60
* Groups only
59
61
*
60
- * @requestField ?sceneName | String | Name of the group to get the items of
61
- * @requestField ?sceneUuid | String | UUID of the group to get the items of
62
+ * @requestField ?canvasName | String | Name of the canvas the group is in
63
+ * @requestField ?canvasUuid | String | UUID of the canvas the group is in
64
+ * @requestField ?sceneName | String | Name of the group to get the items of
65
+ * @requestField ?sceneUuid | String | UUID of the group to get the items of
62
66
*
63
67
* @responseField sceneItems | Array<Object> | Array of scene items in the group
64
68
*
@@ -88,6 +92,8 @@ RequestResult RequestHandler::GetGroupSceneItemList(const Request &request)
88
92
*
89
93
* Scenes and Groups
90
94
*
95
+ * @requestField ?canvasName | String | Name of the canvas the scene or group is in
96
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene or group is in
91
97
* @requestField ?sceneName | String | Name of the scene or group to search in
92
98
* @requestField ?sceneUuid | String | UUID of the scene or group to search in
93
99
* @requestField sourceName | String | Name of the source to find
@@ -133,6 +139,8 @@ RequestResult RequestHandler::GetSceneItemId(const Request &request)
133
139
/* *
134
140
* Gets the source associated with a scene item.
135
141
*
142
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
143
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
136
144
* @requestField ?sceneName | String | Name of the scene the item is in
137
145
* @requestField ?sceneUuid | String | UUID of the scene the item is in
138
146
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -169,6 +177,8 @@ RequestResult RequestHandler::GetSceneItemSource(const Request &request)
169
177
*
170
178
* Scenes only
171
179
*
180
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
181
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
172
182
* @requestField ?sceneName | String | Name of the scene to create the new item in
173
183
* @requestField ?sceneUuid | String | UUID of the scene to create the new item in
174
184
* @requestField ?sourceName | String | Name of the source to add to the scene
@@ -223,6 +233,8 @@ RequestResult RequestHandler::CreateSceneItem(const Request &request)
223
233
*
224
234
* Scenes only
225
235
*
236
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
237
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
226
238
* @requestField ?sceneName | String | Name of the scene the item is in
227
239
* @requestField ?sceneUuid | String | UUID of the scene the item is in
228
240
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -253,6 +265,8 @@ RequestResult RequestHandler::RemoveSceneItem(const Request &request)
253
265
*
254
266
* Scenes only
255
267
*
268
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
269
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
256
270
* @requestField ?sceneName | String | Name of the scene the item is in
257
271
* @requestField ?sceneUuid | String | UUID of the scene the item is in
258
272
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -330,6 +344,8 @@ RequestResult RequestHandler::DuplicateSceneItem(const Request &request)
330
344
*
331
345
* Scenes and Groups
332
346
*
347
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
348
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
333
349
* @requestField ?sceneName | String | Name of the scene the item is in
334
350
* @requestField ?sceneUuid | String | UUID of the scene the item is in
335
351
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -361,6 +377,8 @@ RequestResult RequestHandler::GetSceneItemTransform(const Request &request)
361
377
/* *
362
378
* Sets the transform and crop info of a scene item.
363
379
*
380
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
381
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
364
382
* @requestField ?sceneName | String | Name of the scene the item is in
365
383
* @requestField ?sceneUuid | String | UUID of the scene the item is in
366
384
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -526,6 +544,8 @@ RequestResult RequestHandler::SetSceneItemTransform(const Request &request)
526
544
*
527
545
* Scenes and Groups
528
546
*
547
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
548
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
529
549
* @requestField ?sceneName | String | Name of the scene the item is in
530
550
* @requestField ?sceneUuid | String | UUID of the scene the item is in
531
551
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -559,6 +579,8 @@ RequestResult RequestHandler::GetSceneItemEnabled(const Request &request)
559
579
*
560
580
* Scenes and Groups
561
581
*
582
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
583
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
562
584
* @requestField ?sceneName | String | Name of the scene the item is in
563
585
* @requestField ?sceneUuid | String | UUID of the scene the item is in
564
586
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -592,6 +614,8 @@ RequestResult RequestHandler::SetSceneItemEnabled(const Request &request)
592
614
*
593
615
* Scenes and Groups
594
616
*
617
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
618
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
595
619
* @requestField ?sceneName | String | Name of the scene the item is in
596
620
* @requestField ?sceneUuid | String | UUID of the scene the item is in
597
621
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -625,6 +649,8 @@ RequestResult RequestHandler::GetSceneItemLocked(const Request &request)
625
649
*
626
650
* Scenes and Group
627
651
*
652
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
653
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
628
654
* @requestField ?sceneName | String | Name of the scene the item is in
629
655
* @requestField ?sceneUuid | String | UUID of the scene the item is in
630
656
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -660,6 +686,8 @@ RequestResult RequestHandler::SetSceneItemLocked(const Request &request)
660
686
*
661
687
* Scenes and Groups
662
688
*
689
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
690
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
663
691
* @requestField ?sceneName | String | Name of the scene the item is in
664
692
* @requestField ?sceneUuid | String | UUID of the scene the item is in
665
693
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -693,6 +721,8 @@ RequestResult RequestHandler::GetSceneItemIndex(const Request &request)
693
721
*
694
722
* Scenes and Groups
695
723
*
724
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
725
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
696
726
* @requestField ?sceneName | String | Name of the scene the item is in
697
727
* @requestField ?sceneUuid | String | UUID of the scene the item is in
698
728
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -736,6 +766,8 @@ RequestResult RequestHandler::SetSceneItemIndex(const Request &request)
736
766
*
737
767
* Scenes and Groups
738
768
*
769
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
770
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
739
771
* @requestField ?sceneName | String | Name of the scene the item is in
740
772
* @requestField ?sceneUuid | String | UUID of the scene the item is in
741
773
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
@@ -771,6 +803,8 @@ RequestResult RequestHandler::GetSceneItemBlendMode(const Request &request)
771
803
*
772
804
* Scenes and Groups
773
805
*
806
+ * @requestField ?canvasName | String | Name of the canvas the scene is in
807
+ * @requestField ?canvasUuid | String | UUID of the canvas the scene is in
774
808
* @requestField ?sceneName | String | Name of the scene the item is in
775
809
* @requestField ?sceneUuid | String | UUID of the scene the item is in
776
810
* @requestField sceneItemId | Number | Numeric ID of the scene item | >= 0
0 commit comments