diff --git a/libraries/model/src/model/Material.h b/libraries/model/src/model/Material.h index 57e0f68a9c..2718b1dfa8 100755 --- a/libraries/model/src/model/Material.h +++ b/libraries/model/src/model/Material.h @@ -76,26 +76,26 @@ public: void setOpacity(float opacity); // Schema to access the attribute values of the material - class Schema { - public: - - Color _diffuse; - float _opacity; - Color _specular; - float _shininess; - Color _emissive; - float _spare0; - - Schema() : - _diffuse(0.5f), - _opacity(1.0f), - _specular(0.03f), - _shininess(0.1f), - _emissive(0.0f) - {} + class Schema { + public: + + Color _diffuse; + float _opacity; + Color _specular; + float _shininess; + Color _emissive; + float _spare0; + + Schema() : + _diffuse(0.5f), + _opacity(1.0f), + _specular(0.03f), + _shininess(0.1f), + _emissive(0.0f) + {} }; - const UniformBufferView& getSchemaBuffer() const { return _schemaBuffer; } + const UniformBufferView& getSchemaBuffer() const { return _schemaBuffer; } void setTextureView(MapChannel channel, const TextureView& texture); const TextureMap& getTextureMap() const { return _textureMap; }