docs(travis): Update protocol.md - 40ea7cf [skip ci]

This commit is contained in:
Travis CI 2020-02-15 16:29:59 +00:00
parent 40ea7cfe15
commit c7b49b28c2
2 changed files with 7 additions and 0 deletions

View File

@ -768,6 +768,7 @@
"description": "A transition (other than \"cut\") has begun.", "description": "A transition (other than \"cut\") has begun.",
"return": [ "return": [
"{String} `name` Transition name.", "{String} `name` Transition name.",
"{String} `type` Transition type.",
"{int} `duration` Transition duration (in milliseconds).", "{int} `duration` Transition duration (in milliseconds).",
"{String} `from-scene` Source scene of the transition", "{String} `from-scene` Source scene of the transition",
"{String} `to-scene` Destination scene of the transition" "{String} `to-scene` Destination scene of the transition"
@ -782,6 +783,11 @@
"name": "name", "name": "name",
"description": "Transition name." "description": "Transition name."
}, },
{
"type": "String",
"name": "type",
"description": "Transition type."
},
{ {
"type": "int", "type": "int",
"name": "duration", "name": "duration",

View File

@ -432,6 +432,7 @@ A transition (other than "cut") has begun.
| Name | Type | Description | | Name | Type | Description |
| ---- | :---: | ------------| | ---- | :---: | ------------|
| `name` | _String_ | Transition name. | | `name` | _String_ | Transition name. |
| `type` | _String_ | Transition type. |
| `duration` | _int_ | Transition duration (in milliseconds). | | `duration` | _int_ | Transition duration (in milliseconds). |
| `from-scene` | _String_ | Source scene of the transition | | `from-scene` | _String_ | Source scene of the transition |
| `to-scene` | _String_ | Destination scene of the transition | | `to-scene` | _String_ | Destination scene of the transition |