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
- Particle System Renderer icon is missing in Animation window > Add Property context menu
- [Android] Legacy, TMP and UI Toolkit Input Field language toggle to some non-latin alphabet languages does not work with external keyboard
- Crash on keywords::LocalKeywordState::operator when calling ShaderUtil.GetPasskeywords with ShaderType.RayTracing set as the third parameter
- Inconsistent “Remove property” behavior when removing child properties in Animator window
- Scene View Camera overlay preview goes out of Scene View bounds when the Scene View is resized vertically
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);