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 EpicSnareDrum · Apr 26, 2015 at 08:03 PM · camerarotationcontrol

Very weird rotation axis bug

Hi,

I've been getting a very strange bug of sorts (not even sure if it is a bug or not) on a camera control script. It's working how a want, to an extent. The current code I have here rotates around the player fine (on the Y axis), but I've been trying to add the ability to rotate the camera up or down to view higher or lower objects (X axis). The problem is that this has been causing rotation on my Z axis too, making the camera end up in all sorts of angles I don't want it in. Here, however, is where it gets weird... I put transform.rotation.z = 0; into the update function, but this caused my camera to rotate on an axis diagonal to the X axis. Below is my code:

 #pragma strict
 
 var characterMain : Transform;
 var yOffset : float;
 var XrotateSensitivity : float;
 var YrotateSensitivity : float;
 
 function Update () 
 {
     transform.position = characterMain.position;
     transform.position.y = characterMain.position.y + yOffset;
     
     if(Input.GetAxis("Mouse X") < 0)
     {
         transform.Rotate(0,Input.GetAxis("Mouse X")*XrotateSensitivity,0);
     }
     
     if(Input.GetAxis("Mouse X") > 0)
     {
         transform.Rotate(0,Input.GetAxis("Mouse X")*XrotateSensitivity,0);
     }
 
     if(Input.GetAxis("Mouse Y") < 0)
     {
         transform.Rotate(Input.GetAxis("Mouse Y")*YrotateSensitivity,0,0);
     }
     
     if(Input.GetAxis("Mouse Y") > 0)
     {
         transform.Rotate(Input.GetAxis("Mouse Y")*YrotateSensitivity,0,0);
     }
 }

I have this script attached to an empty to which my camera is childed.

If anyone knows how to fix this, or can suggest a better way to do what I'm trying to do, I'd greatly appreciate any help.

Thanks.

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
2
Best Answer

Answer by Raresh · Apr 26, 2015 at 08:18 PM

I think this is a case of "Gimbal Lock". You should give it a search. https://www.youtube.com/watch?v=zc8b2Jo7mno

Comment
Add comment · Show 1 · 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
avatar image EpicSnareDrum · Apr 27, 2015 at 07:27 AM 1
Share

Thanks, I've done some digging and came to a conclusion :)

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

19 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

Related Questions

How to make camera position relative to a specific target. 1 Answer

MouseOrbit script in alternate space 1 Answer

Why the control with gyroscope inverted when I make 180 degrees turn? 1 Answer

Help with camera coding - Modern Zelda-style camera 1 Answer

Keyboard Controlled Overhead Camera Rotation 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