General code cleanup (#3445)

This commit is contained in:
Alexander Bock
2024-10-10 09:49:02 +02:00
committed by GitHub
parent 125114cad5
commit ff345006d1
108 changed files with 938 additions and 1189 deletions

View File

@@ -451,14 +451,18 @@ RenderableStars::RenderableStars(const ghoul::Dictionary& dictionary)
properties::StringProperty(TextureInfo),
properties::FloatProperty(MultiplierInfo, 1.f, 0.f, 20.f),
properties::FloatProperty(GammaInfo, 1.f, 0.f, 5.f),
properties::FloatProperty(ScaleInfo, 1.f, 0.f, 1.f)
properties::FloatProperty(ScaleInfo, 1.f, 0.f, 1.f),
nullptr,
nullptr
}
, _glare {
properties::PropertyOwner(GlareOwnerInfo),
properties::StringProperty(TextureInfo),
properties::FloatProperty(MultiplierInfo, 1.f, 0.f, 20.f),
properties::FloatProperty(GammaInfo, 1.f, 0.f, 5.f),
properties::FloatProperty(ScaleInfo, 1.f, 0.f, 1.f)
properties::FloatProperty(ScaleInfo, 1.f, 0.f, 1.f),
nullptr,
nullptr
}
, _parameters {
properties::PropertyOwner(SizeCompositionInfo),