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 bhinch · May 16, 2013 at 02:30 AM · augmented realitytransforms

Problem combining GyroDroid rotation with independent position changes

First, this is a fairly noob question, so any advice is very humbly welcome.

I am working on an Android app which uses GyroDroid along with a proprietary Java-space library to acquire something akin to GPS coordinates (it isn't actually GPS, though).

Per the GyroDroid examples, I am simply setting the transform.rotation of my camera to the rotation quaternion provided by GyroDroid. I won't get into the specifics of how the positioning works, but suffice to say it is a black box which provides a Vector3 of the proper (x,y,z) position for my camera. Similarly to GyroDroid, I just assign this Vector3 to the same camera's transform.position.

When I use either part by itself it works just as expected under extensive testing.

However, as soon as I start using both of these together strange things start to happen. After just a couple minutes of use the rotation (but not the position) will become out of sync with the real world. It behaves as if there is a sensor problem, essentially. I believe there is not a sensor problem because all I have to do is stop setting the transform's position to make it go away.

Is there some fundamental thing that I'm not understanding about how to concurrently set rotation and position when using data from GyroDroid that could cause this?

Code:

 private var filterHardness = 1;
 private var rotationFilter : QuaternionFilter = new QuaternionFilter(filterHardness); //a filter to smooth changes in rotation
 private var currentPosition : Vector3 = Vector3.Zero();
 
 private var enableRotation = true;
 private var enablePosition = false;
 
 ...
 
 function Update () {
     if (enableRotation) transform.rotation = rotationFilter.Update(Sensor.rotationQuaternion);
     if (enablePosition) transform.position = currentPosition;
 }
 


The test cases are:

 OK with enableRotation = true and enablePosition = false 
 OK with enableRotation = false and enablePosition = true
 Unacceptable with enableRotation = true and enablePosition = true


In case it isn't clear, the background processes for BOTH the positioning system and GyroDroid are running in all cases. The enablePosition and enableRotation flags have no effect on whether both systems are initialized. Both parts use Java libraries which are loaded at startup. In other words, aside from whether I am changing the camera's transform there is no difference in the running code in any of my three test cases.

Any help sincerely appreciated!

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

0 Replies

· Add your reply
  • Sort: 

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

13 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

Related Questions

Enable and Disable Particle Transforming to Random Position when Disabled 0 Answers

How to make my player play a vault animation when i collide into a vaultable object? 1 Answer

Some Transfrom Excersices for Unity 0 Answers

Basic of unity Android tracking App 0 Answers

XmlException importing a Vuforia AR marker 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