Adapt the visibility settings for all properties

This commit is contained in:
Alexander Bock
2023-04-15 09:33:31 +02:00
committed by GitHub
parent 1ef6cb0c02
commit ca916877b2
152 changed files with 2098 additions and 894 deletions

View File

@@ -32,31 +32,37 @@ namespace {
constexpr openspace::properties::Property::PropertyInfo TransferFunctionInfo = {
"TransferFunction",
"TransferFunction",
"All the envelopes used in the transfer function"
"All the envelopes used in the transfer function",
openspace::properties::Property::Visibility::AdvancedUser
};
constexpr openspace::properties::Property::PropertyInfo DataUnitInfo = {
"DataUnit",
"DataUnit",
"Unit of the data"
"Unit of the data",
openspace::properties::Property::Visibility::AdvancedUser
};
constexpr openspace::properties::Property::PropertyInfo MinValueInfo = {
"MinValue",
"MinValue",
"Minimum value in the data"
"Minimum value in the data",
openspace::properties::Property::Visibility::AdvancedUser
};
constexpr openspace::properties::Property::PropertyInfo MaxValueInfo = {
"MaxValue",
"MaxValue",
"Maximum value in the data"
"Maximum value in the data",
openspace::properties::Property::Visibility::AdvancedUser
};
constexpr openspace::properties::Property::PropertyInfo SaveTransferFunctionInfo = {
"SaveTransferFunction",
"Save Transfer Function",
"Save your transfer function"
"Save your transfer function",
// @VISIBILITY(3.5)
openspace::properties::Property::Visibility::AdvancedUser
};
} // namespace