mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 13:27:53 +02:00
fix uninitialized variables
This commit is contained in:
parent
41bcbf6dbd
commit
f1dee1e7f8
1 changed files with 2 additions and 2 deletions
|
@ -78,7 +78,7 @@ public:
|
|||
bool accurate { true };
|
||||
QUuid entityID;
|
||||
float distance { 0.0f };
|
||||
BoxFace face;
|
||||
BoxFace face { UNKNOWN_FACE };
|
||||
glm::vec3 intersection;
|
||||
glm::vec3 surfaceNormal;
|
||||
QVariantMap extraInfo;
|
||||
|
@ -94,7 +94,7 @@ public:
|
|||
QUuid entityID;
|
||||
float distance { 0.0f };
|
||||
float parabolicDistance { 0.0f };
|
||||
BoxFace face;
|
||||
BoxFace face { UNKNOWN_FACE };
|
||||
glm::vec3 intersection;
|
||||
glm::vec3 surfaceNormal;
|
||||
QVariantMap extraInfo;
|
||||
|
|
Loading…
Reference in a new issue