uvscale as vec2 (Refs #282)

This commit is contained in:
saschawillems 2017-02-13 19:34:05 +01:00
parent 56426fc99d
commit afef87681c

View file

@ -101,7 +101,7 @@ namespace vks
{ {
this->center = glm::vec3(center); this->center = glm::vec3(center);
this->scale = glm::vec3(scale); this->scale = glm::vec3(scale);
this->uvscale = glm::vec3(uvscale); this->uvscale = glm::vec2(uvscale);
} }
}; };