Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 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 /
  • Help Room /
avatar image
0
Question by HaykAv · Jun 12, 2016 at 02:15 PM · camerarigidbodycamera-movementcamera rotatecamera follow

When attaching my custom camera script camera shakes when player starts to move fast.

Here is my player script.

 using UnityEngine;
 using System.Collections;
 
 public class Player : MonoBehaviour
 {
 
     Rigidbody rb;
 
     Vector3 currMovement;
     public float jumpSpeed = 10;
     public float moveSpeed = 10;
     public float rotSpeed = 180;
 
     float distToGround;
 
     public float posSmoothTime = 0.5f;
     float currPos;
     float targetPos;
     float posVel;
 
     public float rotSmoothTime = 0.5f;
     float currRot;
     float targetRot;
     float rotVel;
 
     void Start()
     {
         rb = GetComponent<Rigidbody>();
         distToGround = GetComponent<Collider>().bounds.extents.y;
     }
 
     bool isGrounded() { return Physics.Raycast(transform.position, Vector3.down, distToGround + 0.1f); }
 
     void Update()
     {
         Move();
     }
 
     void Move()
     {
         // Rotation smoothing.
         targetRot = Input.GetAxisRaw("Horizontal") * rotSpeed * Time.smoothDeltaTime;
 
         if (targetRot > 360)
             targetRot -= 360;
         if (targetRot < 0)
             targetRot += 360;
         currRot = Mathf.SmoothDampAngle(currRot, targetRot, ref rotVel, rotSmoothTime * Time.smoothDeltaTime);
 
         transform.eulerAngles += new Vector3(0, currRot, 0);
 
         // Movement smoothing.
         targetPos = Input.GetAxisRaw("Vertical") * moveSpeed;
 
         currPos = Mathf.SmoothDamp(currPos, targetPos, ref posVel, posSmoothTime * Time.smoothDeltaTime);
         currMovement = new Vector3(0, 0, currPos);
         currMovement = transform.rotation * currMovement;
 
         if (isGrounded())
         {
             if (Input.GetButtonDown("Jump"))
                 rb.velocity += Vector3.up * jumpSpeed;
         }
 
         rb.position += currMovement * Time.smoothDeltaTime;
     }
 
 }

I have a Rigidbody attached to my player. I think the problem is with my camera script. Here is my camera script.

 using UnityEngine;
 using System.Collections;
 
 public class CameraMovement : MonoBehaviour
 {
 
     public Transform player;
     Quaternion targetLook;
     Vector3 targetMove;
     public float smoothLook = 0.5f;
     public float smoothMove = 0.5f;
     public float distFromPlayer = 5, heightFromPlayer = 3;
 
     void LateUpdate()
     {
         CameraMove();
     }
 
     void CameraMove()
     {
         targetMove = player.position + (player.rotation * new Vector3(0, heightFromPlayer, -distFromPlayer));
         transform.position = Vector3.Slerp(transform.position, targetMove, smoothMove);
 
         targetLook = Quaternion.LookRotation(player.position - transform.position);
         transform.rotation = Quaternion.Slerp(transform.rotation, targetLook, smoothLook);
     }
 
 }

The player is not an parent of my camera. When I parent the camera to my player the shake stops. But I want a custom smooth camera movement with my custom scirpt, so I can't make the player a parent of the camera.

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
4

Answer by e4lime · Jun 12, 2016 at 06:09 PM

It might be because your camera follows a rigidbody. Do you get the same shaking effect if your camera follows a GameObject that doesn't have a rigidbody? If not try this:

  1. Change the rigidbodys interpolation to internal or external

  2. In CameraMovement.cs: Cache the players rigidbody and use rigidbody.position instead of player.position in CameraMove()

Edit: Try this:

  1. Add a kinematic Rigidbody to the camera

  2. Cache the rigidbody

  3. Use rigidbody.position and rigidbody.rotation instead of transform.position and transform.rotation

  4. Call CameraMove() from FixedUpdate() instead of LateUpdate()

  5. Play around with interpolation on the camera and the player if necessary

Comment
Add comment · Show 4 · 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 e4lime · Jun 12, 2016 at 06:13 PM 0
Share

And move the player movement code to FixedUpdate() (while keeping the input read in Update())

avatar image HaykAv · Jun 13, 2016 at 12:22 PM 0
Share

I did what you said @$$anonymous$$lockrent, please can you answer this question. I modified the code a little bit in there and posted a question. Please can you answer this ?

Here is my question PLEAASSE answer it.

avatar image HaykAv · Jun 13, 2016 at 12:29 PM 0
Share

@$$anonymous$$lockrent if you don't have gamedev stackexchange acc PLS create one and answer my question. And let me know that you were $$anonymous$$lockrent ;). I started using gamedev.stackexchange, because this question was pretty complicated and in unity answers help room I don't think anyone can answer my question right, so PLS go to "Here is my question PLEAASSE answer it." link and answer my question!

avatar image e4lime HaykAv · Jun 13, 2016 at 02:50 PM 0
Share

@HaykAv I answered in your link with some code. It should work now I hope :)

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

70 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

Related Questions

getting Jittery movement on camera when player rotating and moving in same time 0 Answers

CineMachine Camera Movement is inverse 1 Answer

Spyro Like Camera Follow 0 Answers

C# Smooth Follow Space Ship 1 Answer

Making the camera rotation in line with the ball 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