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
@@ -104,13 +104,13 @@ documentation::Documentation RenderableModelProjection::Documentation() {
RenderableModelProjection::RenderableModelProjection(const ghoul::Dictionary& dictionary)
: Renderable(dictionary)
, _colorTexturePath("colorTexture", "Color Texture")
, _rotation("rotation", "Rotation", glm::vec3(0.f), glm::vec3(0.f), glm::vec3(360.f))
, _colorTexturePath("colorTexture", "Color Texture", "") // @TODO Missing documentation
, _rotation("rotation", "Rotation", "", glm::vec3(0.f), glm::vec3(0.f), glm::vec3(360.f)) // @TODO Missing documentation
, _programObject(nullptr)
, _fboProgramObject(nullptr)
, _baseTexture(nullptr)
, _geometry(nullptr)
, _performShading("performShading", "Perform Shading", true)
, _performShading("performShading", "Perform Shading", "", true) // @TODO Missing documentation
{
documentation::testSpecificationAndThrow(
Documentation(),