mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-03 17:30:04 -05:00
Adapt the visibility settings for all properties
This commit is contained in:
@@ -34,25 +34,33 @@ namespace {
|
||||
constexpr openspace::properties::Property::PropertyInfo HasStartInfo = {
|
||||
"HasStart",
|
||||
"Has Start",
|
||||
"If enabled, this TimeFrame will be inactive before the Start"
|
||||
"If enabled, this TimeFrame will be inactive before the Start",
|
||||
// @VISIBILITY(2.75)
|
||||
openspace::properties::Property::Visibility::User
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo StartInfo = {
|
||||
"Start",
|
||||
"Start",
|
||||
"Specifies the time when this TimeFrame becomes active"
|
||||
"Specifies the time when this TimeFrame becomes active",
|
||||
// @VISIBILITY(2.75)
|
||||
openspace::properties::Property::Visibility::User
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo HasEndInfo = {
|
||||
"HasEnd",
|
||||
"Has End",
|
||||
"If enabled, this TimeFrame will be inactive after the End"
|
||||
"If enabled, this TimeFrame will be inactive after the End",
|
||||
// @VISIBILITY(2.75)
|
||||
openspace::properties::Property::Visibility::User
|
||||
};
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo EndInfo = {
|
||||
"End",
|
||||
"End",
|
||||
"Specifies the time when this TimeFrame becomes inactive"
|
||||
"Specifies the time when this TimeFrame becomes inactive",
|
||||
// @VISIBILITY(2.75)
|
||||
openspace::properties::Property::Visibility::User
|
||||
};
|
||||
|
||||
struct [[codegen::Dictionary(TimeFrameInterval)]] Parameters {
|
||||
|
||||
Reference in New Issue
Block a user