From da616fc578151780800dd3be02091210c4d08c7e Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Tue, 26 Jul 2022 11:41:51 +0200 Subject: [PATCH] Change spotlight cone limits --- Source/Engine/Level/Actors/SpotLight.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Engine/Level/Actors/SpotLight.h b/Source/Engine/Level/Actors/SpotLight.h index 294b5fdc5..8e2fe0e36 100644 --- a/Source/Engine/Level/Actors/SpotLight.h +++ b/Source/Engine/Level/Actors/SpotLight.h @@ -90,7 +90,7 @@ public: /// Gets the spot light's outer cone angle (in degrees) /// /// Outer angle (in degrees) - API_PROPERTY(Attributes="EditorOrder(22), DefaultValue(43.0f), EditorDisplay(\"Light\"), Limit(1, 80, 0.1f)") + API_PROPERTY(Attributes="EditorOrder(22), DefaultValue(43.0f), EditorDisplay(\"Light\"), Limit(1, 89, 0.1f)") FORCE_INLINE float GetOuterConeAngle() const { return _outerConeAngle; @@ -106,7 +106,7 @@ public: /// Sets the spot light's inner cone angle (in degrees) /// /// Inner angle (in degrees) - API_PROPERTY(Attributes="EditorOrder(21), DefaultValue(10.0f), EditorDisplay(\"Light\"), Limit(1, 80, 0.1f)") + API_PROPERTY(Attributes="EditorOrder(21), DefaultValue(10.0f), EditorDisplay(\"Light\"), Limit(1, 89, 0.1f)") FORCE_INLINE float GetInnerConeAngle() const { return _innerConeAngle;