From 61983c7d7a1fdb024bef0e823a10f74ad985af23 Mon Sep 17 00:00:00 2001 From: ocupe Date: Sun, 24 Mar 2024 21:23:48 +0100 Subject: [PATCH 1/2] Update spot size to not be exactly 180 degrees --- projector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projector.py b/projector.py index df267ab..fbc5df7 100644 --- a/projector.py +++ b/projector.py @@ -496,7 +496,7 @@ def create_projector(context): spot = context.object spot.name = 'Projector.Spot' spot.scale = (.01, .01, .01) - spot.data.spot_size = math.pi + spot.data.spot_size = math.pi - 0.001 spot.data.spot_blend = 0 spot.data.shadow_soft_size = 0.0 spot.hide_select = True From 2e47003646295d2dc19ade89ded59b96d17c7e3b Mon Sep 17 00:00:00 2001 From: ocupe Date: Sun, 24 Mar 2024 21:24:04 +0100 Subject: [PATCH 2/2] Update version number to 2024.1.1 --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index dffc486..1ec6255 100644 --- a/__init__.py +++ b/__init__.py @@ -7,7 +7,7 @@ "author": "Jonas Schell", "description": "Easy Projector creation and modification.", "blender": (2, 81, 0), - "version": (2024, 1, 0), + "version": (2024, 1, 1), "location": "3D Viewport > Add > Light > Projector", "category": "Lighting", "wiki_url": "https://github.com/Ocupe/Projectors/wiki",