mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 00:36:34 +02:00
fix export entities
This commit is contained in:
parent
8acae02203
commit
62dbca6ce7
2 changed files with 3 additions and 3 deletions
|
@ -25,12 +25,12 @@ float ClipboardScriptingInterface::getClipboardContentsLargestDimension() {
|
||||||
return qApp->getEntityClipboard()->getContentsLargestDimension();
|
return qApp->getEntityClipboard()->getContentsLargestDimension();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ClipboardScriptingInterface::exportEntities(const QString& filename, const QVector<EntityItemID>& entityIDs) {
|
bool ClipboardScriptingInterface::exportEntities(const QString& filename, const QVector<QUuid>& entityIDs) {
|
||||||
bool retVal;
|
bool retVal;
|
||||||
BLOCKING_INVOKE_METHOD(qApp, "exportEntities",
|
BLOCKING_INVOKE_METHOD(qApp, "exportEntities",
|
||||||
Q_RETURN_ARG(bool, retVal),
|
Q_RETURN_ARG(bool, retVal),
|
||||||
Q_ARG(const QString&, filename),
|
Q_ARG(const QString&, filename),
|
||||||
Q_ARG(const QVector<EntityItemID>&, entityIDs));
|
Q_ARG(const QVector<QUuid>&, entityIDs));
|
||||||
return retVal;
|
return retVal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,7 @@ public:
|
||||||
* @param {Uuid[]} entityIDs Array of IDs of the entities to export.
|
* @param {Uuid[]} entityIDs Array of IDs of the entities to export.
|
||||||
* @returns {boolean} <code>true</code> if the export was successful, otherwise <code>false</code>.
|
* @returns {boolean} <code>true</code> if the export was successful, otherwise <code>false</code>.
|
||||||
*/
|
*/
|
||||||
Q_INVOKABLE bool exportEntities(const QString& filename, const QVector<EntityItemID>& entityIDs);
|
Q_INVOKABLE bool exportEntities(const QString& filename, const QVector<QUuid>& entityIDs);
|
||||||
|
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* Export the entities with centers within a cube to a JSON file.
|
* Export the entities with centers within a cube to a JSON file.
|
||||||
|
|
Loading…
Reference in a new issue