mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-21 04:20:12 +02:00
Fix log typo in SpatiallyNestable
This commit is contained in:
parent
4df9302af9
commit
51586ae0a3
2 changed files with 3 additions and 2 deletions
|
@ -66,7 +66,8 @@
|
|||
#include "MIDIEvent.h"
|
||||
|
||||
static const QString SCRIPT_EXCEPTION_FORMAT = "[UncaughtException] %1 in %2:%3";
|
||||
static const QScriptEngine::QObjectWrapOptions DEFAULT_QOBJECT_WRAP_OPTIONS = 0;
|
||||
static const QScriptEngine::QObjectWrapOptions DEFAULT_QOBJECT_WRAP_OPTIONS =
|
||||
QScriptEngine::ExcludeDeleteLater | QScriptEngine::ExcludeChildObjects;
|
||||
|
||||
Q_DECLARE_METATYPE(QScriptEngine::FunctionSignature)
|
||||
int functionSignatureMetaID = qRegisterMetaType<QScriptEngine::FunctionSignature>();
|
||||
|
|
|
@ -488,7 +488,7 @@ glm::vec3 SpatiallyNestable::getVelocity() const {
|
|||
bool success;
|
||||
glm::vec3 result = getVelocity(success);
|
||||
if (!success) {
|
||||
qDebug() << "Warning -- setVelocity failed" << getID();
|
||||
qDebug() << "Warning -- getVelocity failed" << getID();
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue