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 demonrifle · Nov 03, 2016 at 12:54 PM · rotationcamera rotaterotatearoundlimit

How can I limit my rotation around an object ?

I've searched for the answer on the forums, but since I couldn't find one that works for me I'll ask again. So I have a camera rotating around an object. I want to limit the rotation to stop when it reaches X degrees of 90 or -90 aka when it looks at it exactly from above or below. I tried to use clamp, tried to set the degrees = 90 with eulerAngles if its above 90 or below -90 and both did not work, it's possible I didn't implement them properly.(Mind that, I clamped at the Start() function shouldn't that work ? ) It's like the camera completely ignores the limit. TL:DR I want to restrict the camera's rotation around an object but Mathf.Clamp and eulerAngles didn't work . Any guesses ? My code looks like this (Start function, variable delcaration etc are skipped) :

 void Update()
 {

     horizontalInput = Input.GetAxis("Horizontal");
     verticalInput = Input.GetAxis("Vertical");
     if (horizontalInput != 0)
     {
         transform.RotateAround(center.position, center.up, -horizontalInput * 90 * Time.deltaTime);
     }
     if (verticalInput != 0)
     {
        
         transform.RotateAround(center.position, transform.right, verticalInput * 90 * Time.deltaTime);

     }
 }
Comment
Add comment · Show 3
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 Namey5 · Nov 04, 2016 at 09:13 AM 0
Share

Clamping rotation in the Start function won't work, as it will clamp for the first frame and then leave the rest un-clamped. The thing making it difficult in this place is the fact that you are using RotateAround(). Ordinarily, to clamp the rotation you would have to have a separate variable to clamp which is then calculated into a Quaternion from EulerAngles. The easiest way to do this with RotateAround()-style rotation would be to set up your own rotation system.

avatar image demonrifle Namey5 · Nov 04, 2016 at 03:34 PM 0
Share

Aaand how should I go about doing that ? I'm relatively new to unity and I still find it hard to understand how some things are supposed to go.

avatar image Namey5 demonrifle · Nov 04, 2016 at 10:31 PM 0
Share

JScotty's answers shows a pretty good system that uses RotateAround, so I'd suggest following that.

1 Reply

· Add your reply
  • Sort: 
avatar image
2

Answer by JScotty · Nov 04, 2016 at 09:53 AM

http://answers.unity3d.com/questions/438836/limit-camera-rotation-with-rotatearound.html

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Limit Y Axis transform.RotateAround 1 Answer

Help With Arrow Camera Script 2 Answers

Return camera to start position smoothly 2 Answers

RotateAround reversing doesn't work with negative vector3 0 Answers

How can I set a limit to my object rotation???(Here's the code) 2 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