Add description to Propertys

This commit is contained in:
Alexander Bock
2017-07-21 16:31:58 -04:00
parent 3c213fae1e
commit b584f0197e
73 changed files with 409 additions and 311 deletions

View File

@@ -47,9 +47,9 @@ namespace openspace {
RenderableDebugPlane::RenderableDebugPlane(const ghoul::Dictionary& dictionary)
: Renderable(dictionary)
, _texture("texture", "Texture", -1, -1, 255)
, _billboard("billboard", "Billboard", false)
, _size("size", "Size", 10.f, 0.f, std::pow(10.f, 25.f))
, _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)