Change capitalization of property names

This commit is contained in:
Alexander Bock
2017-07-22 18:22:44 -04:00
parent 04bac9293b
commit 036b271d0d
72 changed files with 363 additions and 365 deletions

View File

@@ -47,9 +47,9 @@ namespace openspace {
RenderableDebugPlane::RenderableDebugPlane(const ghoul::Dictionary& dictionary)
: Renderable(dictionary)
, _texture({ "texture", "Texture", "" }, -1, -1, 255) // @TODO Missing documentation
, _billboard({ "billboard", "Billboard", "" }, false) // @TODO Missing documentation
, _size({ "size", "Size", "" }, 10.f, 0.f, std::pow(10.f, 25.f)) // @TODO Missing documentation
, _texture({ "Texture", "Texture", "" }, -1, -1, 255) // @TODO Missing documentation
, _billboard({ "Billboard", "Billboard", "" }, false) // @TODO Missing documentation
, _size({ "Size", "Size", "" }, 10.f, 0.f, std::pow(10.f, 25.f)) // @TODO Missing documentation
, _origin(Origin::Center)
, _shader(nullptr)
, _quad(0)