Search Issue Tracker
Fixed in 5.2.2
Votes
0
Found in
Issue ID
726172
Regression
Yes
[RenderTextures] useMipMap unusable on RenderTexture.GetTemporary in 5.2
RenderTexture.GetTemporary returns "already created" texture in 5.2 to fix some problems. But already created RTs don't allow setting size/mipmap/... flags :(
A workaround for now would be to either not use GetTemporary (but create your own RenderTexture manually), or do GetTemporary(); rt.Release(); rt.useMipMap = true; rt.Create(); -- the latter might be a performance problem.
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
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
steven2
Oct 17, 2017 18:10
Unity 2017.2.0f3 Personal have same issue