Transform.Scale

This commit is contained in:
2014-03-13 01:32:09 +01:00
parent 21b2e3bdc1
commit 99e1b4f8d6
5 changed files with 12 additions and 8 deletions
+4
View File
@@ -9,9 +9,13 @@ namespace Components
struct Transform : Component
{
Transform()
: Scale(glm::vec3(1.f)) { }
glm::vec3 Position;
glm::quat Orientation;
glm::vec3 Velocity;
glm::vec3 Scale;
};
}