mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 15:09:24 +02:00
fix for default param of default constructed quat
This commit is contained in:
parent
93ff34baaa
commit
1084483dd5
1 changed files with 1 additions and 3 deletions
|
@ -21,15 +21,13 @@
|
||||||
|
|
||||||
static const QString HIFI_URL_SCHEME = "hifi";
|
static const QString HIFI_URL_SCHEME = "hifi";
|
||||||
|
|
||||||
const glm::quat EMPTY_QUAT = glm::quat();
|
|
||||||
|
|
||||||
class AddressManager : public QObject {
|
class AddressManager : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
static AddressManager& getInstance();
|
static AddressManager& getInstance();
|
||||||
|
|
||||||
static QString pathForPositionAndOrientation(const glm::vec3& position, bool hasOrientation = false,
|
static QString pathForPositionAndOrientation(const glm::vec3& position, bool hasOrientation = false,
|
||||||
const glm::quat& orientation = EMPTY_QUAT);
|
const glm::quat& orientation = glm::quat());
|
||||||
|
|
||||||
void handleLookupString(const QString& lookupString);
|
void handleLookupString(const QString& lookupString);
|
||||||
void attemptPlaceNameLookup(const QString& lookupString);
|
void attemptPlaceNameLookup(const QString& lookupString);
|
||||||
|
|
Loading…
Reference in a new issue