Search Issue Tracker
Fixed in 5.0.X
Votes
7
Found in
4.5.1f3
Issue ID
615213
Regression
No
Screenshot taken in Landscape mode is not rotated accordingly on WP8
Steps to reproduce:
1. Add the following script to any project:
Texture2D screenshot;
void OnGUI()
{
if (screenshot != null) {
GUI.DrawTexture (new Rect (0, 30, 128,128), screenshot);
}
if (GUILayout.Button ("Take", GUILayout.MinHeight(64)))
{
int width = Screen.width;
int height = Screen.height;
screenshot = new Texture2D(width, height, TextureFormat.RGB24, false);
screenshot.ReadPixels(new Rect(0, 0, width, height), 0, 0);
screenshot.Apply();
}
}
2. Deploy to Windows Phone 8
3. Orientate device to landscape orientation
4. Click on "Take" button. Image will appear rotated.
Comments (3)
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
- Error “Shader error in 'YSCloudCover': call to 'tex3D' is ambiguous at Assets/YSCloudCoverText.shader(606) (on d3d11)“ is present when compiling tex3D shader with DXC
- Placeholder asset is not loaded with Advertisement Legacy sample when using the latest version of the package
- Addressables content build fails but the Player build is successful when building a development build
- Out-of-bounds memory access with multiple CanvasRenderers under a Canvas when using Mesh API
- Inspector tries to access file after it was deleted when the file was locked in Inspector window
TylerO
Sep 07, 2014 16:27
Any progress on this bug? It is preventing us from publishing to Windows Phone 8/8.1!
Meltdown
Aug 27, 2014 23:51
Still have this issue in Unity 4.5.1
TylerO
Jul 26, 2014 17:41
I too am having this problem, causing my minimap (which uses ReadPixels) to be rotated