Search Issue Tracker
By Design
By Design in 2023.1.X
Votes
0
Found in
2020.3.36f1
2021.3.5f1
2022.1.8f1
2022.2.0a19
2023.1.0a2
Issue ID
UUM-7894
Regression
No
Point Light is not showing when zooming out or moving point of view
- Open the attached project "Unit7_StarterFiles.zip"
- Open the "Unit7" Scene
- In the Scene locate "Shop_Light_01" from the Hierarchy (Lightning > ShopLightning > Shop_Light_01)
- Focus on "Shop_Light_01" Light
- Zoom out
Expected result: Point Light is visible
Actual result: Point Light disappears
Reproducible with: 2020.3.36f1, 2021.3.5f1, 2022.1.8f1, 2022.2.0a19, 2023.1.0a2
Tested with: macOS (M1 Max) OS version 12.4
Notes:
- When a few Point Lights are side by side if one is disabled then the other starts showing up
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Required SpriteMask class (ID 331) is stripped when "Strip Engine Code" is enabled
- “Maximized serialized file backup not found” error is thrown when minimizing a window in a newly opened project
- Build stack trace contains invalid lines when building with IL2CPP using scripts with delegates containing generic types in the signature
- Entities Systems window has a “Show Full Player Loop” dropdown which does nothing when clicked after enabling “Show Full Player Loop”
- Entities Hierarchy Search “Show/Hide” button’s Lens Icon is blurry when the Editor is on an external monitor
Resolution Note:
What is happening here is the scene is hitting the per-object light limit in forward rendering, this can be avoided by splitting the mesh(in this case all props in the scene are one mesh, not individual) up into smaller chunks so that all the lights in the scene don't hit it at once, or the other option would be to switch to either Forward+ or Deferred rendering mode on the UniversalRenderer.
Resolution Note (2023.1.X):
What is happening here is the scene is hitting the per-object light limit in forward rendering, this can be avoided by splitting the mesh(in this case all props in the scene are one mesh, not individual) up into smaller chunks so that all the lights in the scene don't hit it at once, or the other option would be to switch to either Forward+ or Deferred rendering mode on the UniversalRenderer.