mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-21 10:28:44 -05:00
Adapt the visibility settings for all properties
This commit is contained in:
@@ -71,79 +71,97 @@ namespace {
|
||||
constexpr openspace::properties::Property::PropertyInfo StepSizeCoefficientInfo = {
|
||||
"StepSizeCoefficient",
|
||||
"Stepsize Coefficient",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
openspace::properties::Property::Visibility::AdvancedUser
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo CurrentTimeInfo = {
|
||||
"CurrentTime",
|
||||
"Current Time",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
// @VISIBILITY(2.5)
|
||||
openspace::properties::Property::Visibility::User
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo MemoryBudgetInfo = {
|
||||
"MemoryBudget",
|
||||
"Memory Budget",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
// @VISIBILITY(3.5)
|
||||
openspace::properties::Property::Visibility::AdvancedUser
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo StreamingBudgetInfo = {
|
||||
"StreamingBudget",
|
||||
"Streaming Budget",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
// @VISIBILITY(3.5)
|
||||
openspace::properties::Property::Visibility::AdvancedUser
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo UseGlobalTimeInfo = {
|
||||
"UseGlobalTime",
|
||||
"Global Time",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
// @VISIBILITY(2.5)
|
||||
openspace::properties::Property::Visibility::User
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo LoopInfo = {
|
||||
"Loop",
|
||||
"Loop",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
openspace::properties::Property::Visibility::User
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo SelectorNameInfo = {
|
||||
"Selector",
|
||||
"Brick Selector",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
// @VISIBILITY(3.5)
|
||||
openspace::properties::Property::Visibility::AdvancedUser
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo StatsToFileInfo = {
|
||||
"PrintStats",
|
||||
"Print Stats",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
openspace::properties::Property::Visibility::Developer
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo StatsToFileNameInfo = {
|
||||
"PrintStatsFileName",
|
||||
"Stats Filename",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
openspace::properties::Property::Visibility::Developer
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo ScalingExponentInfo = {
|
||||
"ScalingExponent",
|
||||
"Scaling Exponent",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
openspace::properties::Property::Visibility::AdvancedUser
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo ScalingInfo = {
|
||||
"Scaling",
|
||||
"Scaling",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
openspace::properties::Property::Visibility::AdvancedUser
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo TranslationInfo = {
|
||||
"Translation",
|
||||
"Translation",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
openspace::properties::Property::Visibility::Developer
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo RotationInfo = {
|
||||
"Rotation",
|
||||
"Euler rotation",
|
||||
"" // @TODO Missing documentation
|
||||
"", // @TODO Missing documentation
|
||||
openspace::properties::Property::Visibility::Developer
|
||||
};
|
||||
} // namespace
|
||||
|
||||
|
||||
Reference in New Issue
Block a user