docs(travis): Update protocol.md - 07ebbe5 [skip ci]

This commit is contained in:
Travis CI
2019-05-20 19:15:50 +00:00
parent 07ebbe56e6
commit aed0234d47
2 changed files with 6 additions and 6 deletions

View File

@ -1384,7 +1384,7 @@
"{int (optional)} `total-record-time` Total time (in seconds) since recording started.", "{int (optional)} `total-record-time` Total time (in seconds) since recording started.",
"{int (optional)} `total-record-bytes` Total bytes recorded since the recording started.", "{int (optional)} `total-record-bytes` Total bytes recorded since the recording started.",
"{int (optional)} `total-record-frames` Total frames recorded since the recording started.", "{int (optional)} `total-record-frames` Total frames recorded since the recording started.",
"{Stats} `stats` OBS Stats" "{OBSStats} `stats` OBS Stats"
], ],
"api": "events", "api": "events",
"name": "Heartbeat", "name": "Heartbeat",
@ -1446,7 +1446,7 @@
"description": "Total frames recorded since the recording started." "description": "Total frames recorded since the recording started."
}, },
{ {
"type": "Stats", "type": "OBSStats",
"name": "stats", "name": "stats",
"description": "OBS Stats" "description": "OBS Stats"
} }
@ -2268,7 +2268,7 @@
"{String} `scene-name` Name of the scene.", "{String} `scene-name` Name of the scene.",
"{String} `item-name` Name of the item in the scene.", "{String} `item-name` Name of the item in the scene.",
"{int} `item-id` Scene item ID", "{int} `item-id` Scene item ID",
"{SceneItemProperties} `transform` Scene item transform properties" "{SceneItemTransform} `transform` Scene item transform properties"
], ],
"api": "events", "api": "events",
"name": "SceneItemTransformChanged", "name": "SceneItemTransformChanged",
@ -2291,7 +2291,7 @@
"description": "Scene item ID" "description": "Scene item ID"
}, },
{ {
"type": "SceneItemProperties", "type": "SceneItemTransform",
"name": "transform", "name": "transform",
"description": "Scene item transform properties" "description": "Scene item transform properties"
} }

View File

@ -672,7 +672,7 @@ Emitted every 2 seconds after enabling it by calling SetHeartbeat.
| `total-record-time` | _int (optional)_ | Total time (in seconds) since recording started. | | `total-record-time` | _int (optional)_ | Total time (in seconds) since recording started. |
| `total-record-bytes` | _int (optional)_ | Total bytes recorded since the recording started. | | `total-record-bytes` | _int (optional)_ | Total bytes recorded since the recording started. |
| `total-record-frames` | _int (optional)_ | Total frames recorded since the recording started. | | `total-record-frames` | _int (optional)_ | Total frames recorded since the recording started. |
| `stats` | _Stats_ | OBS Stats | | `stats` | _OBSStats_ | OBS Stats |
--- ---
@ -948,7 +948,7 @@ An item's transform has been changed.
| `scene-name` | _String_ | Name of the scene. | | `scene-name` | _String_ | Name of the scene. |
| `item-name` | _String_ | Name of the item in the scene. | | `item-name` | _String_ | Name of the item in the scene. |
| `item-id` | _int_ | Scene item ID | | `item-id` | _int_ | Scene item ID |
| `transform` | _SceneItemProperties_ | Scene item transform properties | | `transform` | _SceneItemTransform_ | Scene item transform properties |
--- ---