Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • 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 hellaeon · Feb 04, 2013 at 11:36 PM · iphonequaternionipadrotationsgyro

Need to treat the input.gyro as a steering wheel on iPad

Hi all, I have been playing with the iPad gyro with some success but need someone to help me understand how to calculate the iPad to always point down a specific axis regardless of orientation.

I don't have too many issues with calculations on object rotations but I think I have a mental block when it comes to the iPad being the point of reference.

Ideally I want to point down the z regardless of where or how i am holding the device. I know it's simple, can someone give me a small kick? Am I thinking of this the wrong way? Do I need to 'unapply' the orientation to always remain at a specific rotation?

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 hellaeon · Feb 15, 2013 at 07:45 AM

In the end the gyro is way over kill for such a simple task. Turns out I can just use the Input.Acceleration values. This I believe ignores what axis you may be facing: // z of object pointing into screen

 if (use_iphone)
 {    
     acc = Input.acceleration * iPhone_turn_speed;
              
     if (Mathf.Abs(acc.x) > acceleration_tolerance) 
     {
         rot_z -= acc.x;
                     
         if (rot_z > angle_max) 
             rot_z = angle_max;
                                         
         if (rot_z < -1 * angle_max) 
             rot_z = -1 * angle_max;
     
         transform.rotation = Quaternion.AngleAxis(rot_z, Vector3.forward);
     }                
 }

I found no need to normalize the input acceleration for my project, rather just take whatever away from a rotation value, which I can then confirm does not go outside the bounds I set.

Cheers

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.

Follow this Question

Answers Answers and Comments

9 People are following this question.

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

Related Questions

iphone/ipad Gyro perpendiculat and moving FPC 1 Answer

About iPhone/iPad development 1 Answer

does the iPad have a max FPS 2 Answers

translating a touchDeltaPosition from the y axis to z axis 1 Answer

Normalized View Port changes on mobile build. 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