From ecd936705b5ad707abe46df91535a06c431e812b Mon Sep 17 00:00:00 2001 From: Sam Gondelman Date: Wed, 28 Nov 2018 09:54:20 -0800 Subject: [PATCH] typo --- libraries/graphics/src/graphics/Material.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/graphics/src/graphics/Material.h b/libraries/graphics/src/graphics/Material.h index 196c0d595c..773ffbc954 100755 --- a/libraries/graphics/src/graphics/Material.h +++ b/libraries/graphics/src/graphics/Material.h @@ -337,8 +337,8 @@ public: glm::vec2 _lightmapParams { 0.0, 1.0 }; // x: material mode (0 for UV, 1 for PROJECTED) - // x: 1 for texture repeat, 0 for discard outside of 0 - 1 - glm::vec2 _materialParms { 0.0, 1.0 }; + // y: 1 for texture repeat, 0 for discard outside of 0 - 1 + glm::vec2 _materialParams { 0.0, 1.0 }; Schema() {} };