fixed based on comment

This commit is contained in:
amer cerkic 2019-03-05 10:45:15 -08:00
parent 29a308dcaa
commit 36e9c604e9
2 changed files with 1 additions and 2 deletions

View file

@ -40,7 +40,6 @@ ModelEntityItem::ModelEntityItem(const EntityItemID& entityItemID) : EntityItem(
_type = EntityTypes::Model;
_lastKnownCurrentFrame = -1;
_visuallyReady = false;
_modelScale=glm::vec3(1.0f);
}
const QString ModelEntityItem::getTextures() const {

View file

@ -164,7 +164,7 @@ protected:
int _lastKnownCurrentFrame{-1};
glm::u8vec3 _color;
glm::vec3 _modelScale;
glm::vec3 _modelScale {1.0f};
QString _modelURL;
bool _relayParentJoints;
bool _groupCulled { false };