mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 04:57:58 +02:00
Fix JSDoc arrays
This commit is contained in:
parent
4e802b0f3f
commit
0ca0a6f3be
2 changed files with 3 additions and 3 deletions
|
@ -51,7 +51,7 @@ class Audio : public AudioScriptingInterface, protected ReadWriteLockable {
|
||||||
* @property {object} devices <em>Read-only.</em> <strong>Deprecated:</strong> This property is deprecated and will be
|
* @property {object} devices <em>Read-only.</em> <strong>Deprecated:</strong> This property is deprecated and will be
|
||||||
* removed.
|
* removed.
|
||||||
* @property {boolean} isSoloing <em>Read-only.</em> <code>true</code> if any nodes are soloed.
|
* @property {boolean} isSoloing <em>Read-only.</em> <code>true</code> if any nodes are soloed.
|
||||||
* @property {QVector<QUuid>} soloList <em>Read-only.</em> Get the list of currently soloed node UUIDs.
|
* @property {Uuid[]} soloList <em>Read-only.</em> Get the list of currently soloed node UUIDs.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Q_PROPERTY(bool muted READ isMuted WRITE setMuted NOTIFY mutedChanged)
|
Q_PROPERTY(bool muted READ isMuted WRITE setMuted NOTIFY mutedChanged)
|
||||||
|
|
|
@ -43,7 +43,7 @@ public:
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* Add nodes to the audio solo list
|
* Add nodes to the audio solo list
|
||||||
* @function Audio.addToSoloList
|
* @function Audio.addToSoloList
|
||||||
* @param {QVector<QUuid>} uuidList - List of node UUIDs to add to the solo list.
|
* @param {Uuid[]} uuidList - List of node UUIDs to add to the solo list.
|
||||||
*/
|
*/
|
||||||
Q_INVOKABLE void addToSoloList(QVector<QUuid> uuidList) {
|
Q_INVOKABLE void addToSoloList(QVector<QUuid> uuidList) {
|
||||||
_localAudioInterface->getAudioSolo().addUUIDs(uuidList);
|
_localAudioInterface->getAudioSolo().addUUIDs(uuidList);
|
||||||
|
@ -52,7 +52,7 @@ public:
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* Remove nodes from the audio solo list
|
* Remove nodes from the audio solo list
|
||||||
* @function Audio.removeFromSoloList
|
* @function Audio.removeFromSoloList
|
||||||
* @param {QVector<QUuid>} uuidList - List of node UUIDs to remove from the solo list.
|
* @param {Uuid[]} uuidList - List of node UUIDs to remove from the solo list.
|
||||||
*/
|
*/
|
||||||
Q_INVOKABLE void removeFromSoloList(QVector<QUuid> uuidList) {
|
Q_INVOKABLE void removeFromSoloList(QVector<QUuid> uuidList) {
|
||||||
_localAudioInterface->getAudioSolo().removeUUIDs(uuidList);
|
_localAudioInterface->getAudioSolo().removeUUIDs(uuidList);
|
||||||
|
|
Loading…
Reference in a new issue