Added scene selector in the SettingsEngine, in the GUI under Global Properties.

Has placeholder functionality for what's coming in the next commit.
This commit is contained in:
Matthew Territo
2016-07-27 16:45:43 -06:00
parent 035f5ba989
commit fdb90f74ac
3 changed files with 56 additions and 7 deletions

View File

@@ -27,18 +27,24 @@
#include <openspace/properties/propertyowner.h>
#include <openspace/properties/scalarproperty.h>
#include <openspace/properties/optionproperty.h>
namespace openspace {
class SettingsEngine : public properties::PropertyOwner {
public:
SettingsEngine();
SettingsEngine();
void initialize();
private:
properties::FloatProperty _eyeSeparation;
void initEyeSeparation();
void initSceneFiles();
properties::FloatProperty _eyeSeparation;
properties::OptionProperty _scenes;
};
} // namespace openspace
#endif //#ifndef __SETTINGSENGINE_H__