mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-03-10 15:28:36 -05:00
Encapsulate identifier, guiName, and description into a PropertyInfo struct
This commit is contained in:
@@ -87,9 +87,9 @@ documentation::Documentation RenderablePlane::Documentation() {
|
||||
|
||||
RenderablePlane::RenderablePlane(const ghoul::Dictionary& dictionary)
|
||||
: Renderable(dictionary)
|
||||
, _texturePath("texture", "Texture", "") // @TODO Missing documentation
|
||||
, _billboard("billboard", "Billboard", "", false) // @TODO Missing documentation
|
||||
, _size("size", "Size", "", 10, 0, std::pow(10, 25)) // @TODO Missing documentation
|
||||
, _texturePath({ "texture", "Texture", "" }) // @TODO Missing documentation
|
||||
, _billboard({ "billboard", "Billboard", "" }, false) // @TODO Missing documentation
|
||||
, _size({ "size", "Size", "" }, 10, 0, std::pow(10, 25)) // @TODO Missing documentation
|
||||
, _shader(nullptr)
|
||||
, _texture(nullptr)
|
||||
, _blendMode(BlendMode::Normal)
|
||||
|
||||
Reference in New Issue
Block a user