diff --git a/src/Utils.cpp b/src/Utils.cpp index 9ae1cf0d..f42a12fe 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -658,7 +658,7 @@ bool Utils::SetFilenameFormatting(const char* filenameFormatting) { * @property {double} `width` Scene item width (base source width multiplied by the horizontal scaling factor) * @property {double} `height` Scene item height (base source height multiplied by the vertical scaling factor) * @property {String} `parentGroupName` Name of the item's parent (if this item belongs to a group) - * @property {Array} `groupChildren` + * @property {Array} `groupChildren` List of children (if this item is a group) */ obs_data_t* Utils::GetSceneItemPropertiesData(obs_sceneitem_t* sceneItem) { if (!sceneItem) { diff --git a/src/WSRequestHandler_SceneItems.cpp b/src/WSRequestHandler_SceneItems.cpp index 193c1324..342f4e31 100644 --- a/src/WSRequestHandler_SceneItems.cpp +++ b/src/WSRequestHandler_SceneItems.cpp @@ -29,6 +29,9 @@ * @return {int} `sourceHeight` Base source (without scaling) of the source * @return {double} `width` Scene item width (base source width multiplied by the horizontal scaling factor) * @return {double} `height` Scene item height (base source height multiplied by the vertical scaling factor) +* @property {Boolean} `isGroup` Whether or not this Scene Item is a group +* @property {String} `parentGroupName` Name of the item's parent (if this item belongs to a group) +* @property {Array} `groupChildren` List of children (if this item is a group) * * @api requests * @name GetSceneItemProperties