Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 LowTierCoder · May 07, 2020 at 09:39 AM · rotationprogrammingrotationsbegginer

Gameobjects rotation goes haywire,

 public class Script : MonoBehaviour
 {
     //The cam script
     [SerializeField]
     cam Cam;
     [SerializeField]
     Transform arms;
     float xrotation = 90f;
 
     // Update is called once per frame
     void Update()
     {
         xrotation += Cam.xRotation;
 
         transform.localEulerAngles = new Vector3(xrotation, -90, 0);
     }
 }

I have a problem my xrotation goes crazy if I look way up or way down. And I know why its happening, I think its because this (xrotation += Cam.xRotation;) is inside void Update and it keeps adding the value of Cam.xRotation to the xrotation float every frame and the sum of that answer gets to be the new xrotation value and it goes on again and again. Now the question is, how can I add those 2 floats but not adding it again and again? Just once when the Cam.xRotation value is changed.

,

Comment
Add comment · Show 1
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 mattg_unity802 · May 07, 2020 at 01:08 PM 0
Share

$$anonymous$$aybe try doing a comparison with a buffer if the value has significantly changed or not? say:

if(new rotation > last rotation + buffer) { perform rotation; } else last rotation = new rotation;

There might be a better way but I'm not sure how you're trying to use your camera (FPS, 3rd person, custom system, etc). I always mix up assigning a new rotation v. using the Rotate function that happens every update. Also check out cine$$anonymous$$achine plugin - maybe that's what you're looking for

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by fblast1 · May 07, 2020 at 02:17 PM

Well,try this

     //The cam script
     [SerializeField]
     cam Cam;
     [SerializeField]
     Transform arms;
     float xrotation = 90f;
 
     int tempValue;
     // Update is called once per frame
 
     private void Start()
     {
         tempValue = Mathf.Round(Cam.xRotation);
     }
     void Update()
     {
        
        
         if(Mathf.Round(Cam.xRotation) != tempValue)
         {
             tempValue = Mathf.Round(Cam.xRotation);
             xrotation += Cam.xRotation;
             transform.Rotate(xrotation, -90, 0);
         }
 
         //transform.localEulerAngles = new Vector3(xrotation, -90, 0);
      
     }

Well I didn't test it since you are using other script that is involved :)

The idea is that you round that value to int number then you assign it to a variable then check if it is equals to it or not if not you add that value to your xrotation .


Regards

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

183 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 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 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 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 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 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

Multiple Cars not working 1 Answer

How do I change the rotation of an object after setting transform.up? 0 Answers

Ball Get Stuck on Rotating Platform 1 Answer

How can I rotate an object without moving it up or down? 0 Answers

managing rotation of Turret on two axis 1 Answer


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