utils + sceneitem: fix docs again

This commit is contained in:
Stéphane Lepin 2019-05-16 13:55:33 +02:00
parent eb7fbf011f
commit b0a35789f6
2 changed files with 4 additions and 4 deletions

View File

@ -657,8 +657,8 @@ bool Utils::SetFilenameFormatting(const char* filenameFormatting) {
* @property {int} `sourceHeight` Base source (without scaling) of the source
* @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<SceneItemTransform>} `groupChildren` List of children (if this item is a group)
* @property {String (optional)} `parentGroupName` Name of the item's parent (if this item belongs to a group)
* @property {Array<SceneItemTransform> (optional)} `groupChildren` List of children (if this item is a group)
*/
obs_data_t* Utils::GetSceneItemPropertiesData(obs_sceneitem_t* sceneItem) {
if (!sceneItem) {

View File

@ -30,8 +30,8 @@
* @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<SceneItemTransform>} `groupChildren` List of children (if this item is a group)
* @property {String (optional)} `parentGroupName` Name of the item's parent (if this item belongs to a group)
* @property {Array<SceneItemTransform> (optional)} `groupChildren` List of children (if this item is a group)
*
* @api requests
* @name GetSceneItemProperties