mirror of
https://github.com/overte-org/overte.git
synced 2025-07-24 02:04:01 +02:00
fixed based on comment
This commit is contained in:
parent
29a308dcaa
commit
36e9c604e9
2 changed files with 1 additions and 2 deletions
|
@ -40,7 +40,6 @@ ModelEntityItem::ModelEntityItem(const EntityItemID& entityItemID) : EntityItem(
|
||||||
_type = EntityTypes::Model;
|
_type = EntityTypes::Model;
|
||||||
_lastKnownCurrentFrame = -1;
|
_lastKnownCurrentFrame = -1;
|
||||||
_visuallyReady = false;
|
_visuallyReady = false;
|
||||||
_modelScale=glm::vec3(1.0f);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const QString ModelEntityItem::getTextures() const {
|
const QString ModelEntityItem::getTextures() const {
|
||||||
|
|
|
@ -164,7 +164,7 @@ protected:
|
||||||
int _lastKnownCurrentFrame{-1};
|
int _lastKnownCurrentFrame{-1};
|
||||||
|
|
||||||
glm::u8vec3 _color;
|
glm::u8vec3 _color;
|
||||||
glm::vec3 _modelScale;
|
glm::vec3 _modelScale {1.0f};
|
||||||
QString _modelURL;
|
QString _modelURL;
|
||||||
bool _relayParentJoints;
|
bool _relayParentJoints;
|
||||||
bool _groupCulled { false };
|
bool _groupCulled { false };
|
||||||
|
|
Loading…
Reference in a new issue