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
- Shader warning in 'Hidden/Core/DebugOccluder' thrown after building High Definition 3D Sample Template
- Audio Mixer “+” buttons overlap with UI when the Audio Mixer window layout is set to Horizontal
- "Clear" button in the "Set project display name" closes all the pop-up instead of clearing just a name from the field
- Video Player renders no video on specific devices when using Vulkan
- The Editor slows itself down by showing tons of warnings when the majority of TransformAccessArrays content are NullRefs
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