Search Issue Tracker
Won't Fix
Votes
8
Found in
5.3.3p2
Issue ID
775291
Regression
No
Graphics.Blit(renderTexture, null) doesn't blit to screen unless main camera target texture is null
Graphics.Blit(renderTexture, null) doesn't blit to screen unless main camera target texture is null
Documentation says that blitting render texture to a null render target will blit it to screen:
http://docs.unity3d.com/ScriptReference/Graphics.Blit.html
However, if you set Camera.main.targetTexture to a renderTexture, and then blit that render texture to "null" render target, it will complain that "Scene is missing a fullscreen camera". A workaround is to set Camera.main.targetTexture to null before doing the blit.
Comments (1)
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
- Tile Palette grid is moved after entering Play Mode
- Tile Palette Edit mode turns off in Play Mode
- The Editor crashes when Generating Font Atlas in the Font Asset Creator with “9999999999” padding and 256x256 Atlas Resolution
- [iOS] An “ArgumentNullException” error is thrown when GetIntroductoryPriceDictionary() method is called
- Font Import Settings documentation page is missing when the documentation button is pressed in the Inspector window
MattRix
Oct 05, 2016 16:19
Note that even the workaround has issues, because any image effects on the camera will then get rendered at the full screen resolution rather than the targetTexture resolution, even if you set targetTexture to the proper texture again after the Blit. (this is probably a separate bug, but it's worth noting here)