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

@@ -49,21 +49,27 @@ namespace {
"EffectiveTemperature",
"Effective Temperature",
"The effective temperature of the corresponding star, in Kelvin. "
"Used to compute the width and size of the disc"
"Used to compute the width and size of the disc",
// @VISIBILITY(2.5)
openspace::properties::Property::Visibility::User
};
constexpr openspace::properties::Property::PropertyInfo LuminosityInfo = {
"Luminosity",
"Luminosity",
"The luminosity of the corresponding star, in units of solar luminosities. "
"Used to compute the width and size of the disc"
"Used to compute the width and size of the disc",
// @VISIBILITY(2.5)
openspace::properties::Property::Visibility::User
};
constexpr openspace::properties::Property::PropertyInfo OptimisticInfo = {
"Optimistic",
"Optimistic" ,
"If true, the habitable zone disc is rendered with the optimistic boundaries "
"rather than the conservative ones"
"rather than the conservative ones",
// @VISIBILITY(2.5)
openspace::properties::Property::Visibility::User
};
constexpr openspace::properties::Property::PropertyInfo KopparapuTeffIntervalInfo = {
@@ -72,7 +78,9 @@ namespace {
"The effective temperature interval for which Kopparapu's formula is used for "
"the habitable zone computation. For stars with temperatures outside the range, "
"a simpler method by Tom E. Harris is used. This method only uses the star "
"luminosity and does not include computation of the optimistic boundaries"
"luminosity and does not include computation of the optimistic boundaries",
// @VISIBILITY(2.5)
openspace::properties::Property::Visibility::User
};
struct [[codegen::Dictionary(RenderableHabitableZone)]] Parameters {