Skip to content

Commit

Permalink
Merge pull request #39 from Ocupe/fix/incorrect-rendering-with-2-or-m…
Browse files Browse the repository at this point in the history
…ore-projectors

Update spot size and version number
  • Loading branch information
Ocupe authored Mar 24, 2024
2 parents b66587f + 2e47003 commit 0f300e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion projector.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0f300e8

Please sign in to comment.