Search Issue Tracker
By Design
Votes
0
Found in
2017.3.0a1
2018.3.0a1
2018.3.0f2
2019.1.0a1
2019.2.0a1
Issue ID
1135734
Regression
No
"RenderTexture" is null in "OnRenderImage" when Multiple Render Targets are set for the Camera
Reproduction steps:
1. Open "New Unity Project.zip" project
2. Enter Play mode
3. Look at the Console window
4. See "RenderTexture src is null!"
Expected Result: RenderTexture is not NULL
Actual Result: RenderTexture is NULL
Reproduced with: 2019.2.0a8, 2019.1.0b7, 2018.3.9f1, 2017.4.23f1
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
- Crash on GUIManager::DoGUIEvent when focusing on the Game view window on a specific project
- Asset creation in the Project Browser is not always undone/inconsistent when the undo shortcut is pressed right after creating an asset
- JobTempAlloc memory leak warning is thrown when the Player is shut down
- Graphics State Collection warm-up does not work when using with Addressables Shaders
- "Baked Shadow Radius" field is visible but inactive when when the Shadow Type is set to "Hard Shadows" under the Light Component
Resolution Note:
Src texture doesn't get bind to any of the buffer MRT the script created.
User can use CommandBuffer instead, for example:
CommandBuffer cmd = new CommandBuffer();
cmd.SetGlobalTexture("_CameraDepthTexture", m_DepthBuffer);
cmd.SetRenderTarget(m_ColorBuffer.colorBuffer, m_DepthBuffer.depthBuffer);
m_Camera.AddCommandBuffer(CameraEvent.BeforeSkybox,cmd);