• 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 /
  • Help Room /
avatar image
Question by Fetdressing · Aug 20, 2016 at 01:27 PM · cameracamera rotatecamera-lookcamera movementjagged

Third person look around camera, jagged results

Hello!

I have created a camera script w$$anonymous$$ch allows for rotating around a target, kinda lika World of warcraft's camera. However I am experiancing bumpiness when moving the camera in Y. I have no idea why t$$anonymous$$s would happen and would be really greateful if anyone had some thoughts or ideas why! The rotating around targets X work perfectly fine.

Here's the script: private Transform t$$anonymous$$sTransform; private Camera t$$anonymous$$sCamera; public Transform target;

     [Header("MouseStuff")]
     private float XSensitivity = 18;
     private float YSensitivity = 2;
 
     public float height = 1f;
     private float distance = 12f;
     private float cameraFollowSpeed = 300;
 
     private Vector3 offsetX;
     private float offsetHY = 0;
     private Vector3 finalOffset;
     private float distanceOffset = 0;
 
     private float maxDistanceOffset = 35;
     private float yMinHeight = -25;
     private float yMaxHeight = 25;
     // Use t$$anonymous$$s for initialization
     void Start () {
         t$$anonymous$$sTransform = t$$anonymous$$s.transform;
         t$$anonymous$$sTransform.position = target.position + -t$$anonymous$$sTransform.forward * 10;
         t$$anonymous$$sCamera = t$$anonymous$$sTransform.GetComponentsInC$$anonymous$$ldren<Transform>()[1].GetComponent<Camera>();
 
         offsetX = new Vector3(0, height, distance);
     }
 
     void LateUpdate()
     {
         float xRot = Input.GetAxis("Mouse X") * XSensitivity;
         float yRot = Input.GetAxis("Mouse Y") * YSensitivity;
 
         offsetX = Quaternion.AngleAxis(xRot, Vector3.up) * offsetX;
         float yHeightOffset = -yRot;
         offsetHY = Mathf.Clamp(offsetHY + yHeightOffset, yMinHeight, yMaxHeight);
         
 
         float d = Input.GetAxis("Mouse ScrollWheel");
         if (d > 0f)
         {
             // scroll up
             distanceOffset -= d* 200 * Time.deltaTime;
         }
         else if (d < 0f)
         {
             // scroll down
             distanceOffset -= d*200 * Time.deltaTime;
         }
         distanceOffset = Mathf.Clamp(distanceOffset, 0, maxDistanceOffset);
         finalOffset = offsetX + new Vector3(0, offsetHY, 0) + t$$anonymous$$sTransform.forward * Mathf.Abs(offsetHY*0.5f) + -t$$anonymous$$sTransform.forward * distanceOffset;
         t$$anonymous$$sTransform.position = Vector3.Lerp(t$$anonymous$$sTransform.position, target.position + finalOffset, cameraFollowSpeed * Time.deltaTime);
         t$$anonymous$$sTransform.LookAt(target.position);
     }

//Simon

Comment

People who like this

0 Show 0
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.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

69 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

Related Questions

Maximum Camera Angle Rotation 0 Answers

How to recreate the Silent Hill 1 camera style? 0 Answers

Camera speeds up when moving. 0 Answers

I'm too dumb to make a Tekken-like camera, can someone help me with it? 1 Answer

Camera Quaternion.RotateTowards without rolling/banking 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