mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-24 04:58:59 -05:00
Convert property owner identifiers to camel case
This commit is contained in:
@@ -186,7 +186,7 @@ namespace {
|
||||
|
||||
constexpr openspace::properties::Property::PropertyInfo ShadowMappingInfo = {
|
||||
"ShadowMapping",
|
||||
"Shadow-Mapping",
|
||||
"Shadow Mapping",
|
||||
"Enables shadow mapping algorithm. Used by renderable rings too."
|
||||
};
|
||||
|
||||
@@ -524,7 +524,7 @@ RenderableGlobe::RenderableGlobe(const ghoul::Dictionary& dictionary)
|
||||
FloatProperty(OrenNayarRoughnessInfo, 0.f, 0.f, 1.f),
|
||||
IntProperty(NActiveLayersInfo, 0, 0, OpenGLCap.maxTextureUnits() / 3)
|
||||
})
|
||||
, _shadowMappingPropertyOwner({ "Shadow-Mapping" })
|
||||
, _shadowMappingPropertyOwner({ "ShadowMapping" })
|
||||
, _debugPropertyOwner({ "Debug" })
|
||||
, _grid(DefaultSkirtedGridSegments, DefaultSkirtedGridSegments)
|
||||
, _leftRoot(Chunk(LeftHemisphereIndex))
|
||||
|
||||
@@ -166,7 +166,7 @@ documentation::Documentation ShadowComponent::Documentation() {
|
||||
}
|
||||
|
||||
ShadowComponent::ShadowComponent(const ghoul::Dictionary& dictionary)
|
||||
: properties::PropertyOwner({ "Shadows-Component" })
|
||||
: properties::PropertyOwner({ "ShadowsComponent" })
|
||||
, _saveDepthTexture(SaveDepthTextureInfo)
|
||||
, _distanceFraction(DistanceFractionInfo, 20, 1, 10000)
|
||||
, _enabled({ "Enabled", "Enabled", "Enable/Disable Shadows" }, true)
|
||||
|
||||
Reference in New Issue
Block a user