Search Issue Tracker
Won't Fix
Votes
0
Found in
2017.4.0f1
2018.2.13f1
Issue ID
1094958
Regression
No
Editor crashes with Camera::SetupRender or Camera::CustomRender when using multiple objects with custom reflective shader
How to reproduce:
1. Open attached "case_1094958-Experiments_smallRepro.zip" project in comment
2. Duplicate "Mirror" object in Hierarchy
Expected result: Selected object duplicates
Actual result: Editor crashes
Reproduced with: 2017.4.15f1, 2018.2.16f1, 2018.3.0b10, 2019.1.0a8
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
- “Default Scene” dropdown field contains a spelling mistake “Default Builtin”
- Editor crashes on PPtr<Mesh> after adding Text Mesh and Cloth Components to the same GameObject
- Previously deleted “DefaultLookDevProfile“ is present when upgrading the Editor version
- [Ubuntu] UI text and buttons are missing spaces in Unity Version Control > New Workspace window
- "Inherit attribute is not supported" warning is shown but attributes are available in VFX Graph Output and Update blocks
Resolution Note (2019.1.X):
Looking at the code there is some bad recursion happening in the script that is causing this to happen.
Calling for 'OnWillRenderObject' is creating a reflection camera (if none exists) in the function `CreateMirrorObjects`. If there is only one Mirror object in the scene this is okay as this function will only be called for the one camera.If there are two mirror objects, this function will be called in a way that continually creates new Cameras and then calls render on them. This will lead to a crash and stack overflow.
The correct fix here is to revise how you do the reflection calculation and not have recursion in your reflection rendering.