• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Kurius · Jan 19, 2016 at 11:48 PM · orientationorthographic cameraautorotation

Bug?... Handling Android phone auto rotation orientation changes

  • SOLVED by updating to the latest version of Unity (v5.3.1f1).

  • Here's a Youtube video
    • Note: the video shows buggy behavior, but those bugs are eliminated in the latest version of Unity (v5.3.1f1)

    • I set the Build Settings to have Default Orientation set to Auto Rotation

    • I initially setup my camera in landscape orientation

    • I adjust the Camera orthographicSize when the phone rotates to portrait orientation
      • If I don't do this then the camera seems too "zoomed in" I have a (black) background image behind a grid of (blue) sprites

      • Here is my orientation handling code...

using UnityEngine; using System.Collections;

public class myOrientationHandler : MonoBehaviour { float LandscapeSize; bool isPortrait = false;

 void Awake () {
     LandscapeSize = Camera.main.orthographicSize;
     StartCoroutine (myCheckOrientation ());
 }

 IEnumerator myCheckOrientation(){
     yield return new WaitForSeconds(0.5f);
     if (!isPortrait && Camera.main.aspect <= 1) {
         isPortrait = true;
         print ("PORTRAIT MODE !!!");
         Camera.main.orthographicSize = LandscapeSize / Camera.main.aspect;
     } else if (isPortrait && Camera.main.aspect > 1) {
         isPortrait = false;
         print ("LANDSCAPE MODE !!!");
         Camera.main.orthographicSize = LandscapeSize;
     }
     StartCoroutine (myCheckOrientation ());
 }

}

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by Kurius · Jan 20, 2016 at 09:13 PM

SOLVED by updating to the latest version of Unity (v5.3.1f1). Moderators, please remove "Bug?..." from title of this thread. Thank you. Those of you who are interested, the code I posted earlier works perfectly. Just add that script to your camera. Note: the code assumes your camera is initially setup in Landscape mode.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

31 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

"Powered by Unity" splash orientation faces landscape on iPhone even when portrait is included in autorotation 1 Answer

Execute code before the Made With Unity splash screen 1 Answer

Having issues with ScreenOrientation.Portrait to Screen.AutoOrientation and Back to Portrait 1 Answer

Autorotate ... but only on certain scenes? 0 Answers

Orientation Problem - Tablet vs Phone 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges