Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 11 Next capture
2021 2022 2023
1 capture
11 Jun 22 - 11 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 Staffiend · Jul 08, 2015 at 09:23 AM · camera2ddirectionfollowsmooth

Why does the camera smoothly follow in one direction but not the other?

Hello! I am currently trying to write a camera script for a 2D platformer. Everything works pretty good except for one thing: the camera will track the player smoothly and lerp to the correct position in one direction but not the other. The problem seems to be with trying to add an offset (the offsetLeft variable in the script) to the position the camera is supposed to lerp to. Depending on the sign of the offset value the camera will only work in one direction. In the other direction the camera will follow but it is very jittery and does not lerp to the position it is supposed to. After banging my head against the keyboard for hours trying to come up with a solution, I have given up and decided to ask the good people in the unity community for help. Why would it work perfectly in one direction and not the other? Any help will be greatly appreciated.

The script below is attached to the main camera in the scene.

 using UnityEngine;
 using System.Collections;
 
 public class ProtoCameraOne : MonoBehaviour {
 
     public Transform target;
 
     public float offsetLeft = 2f;
     public float offsetRight = 2f;
     public float offsetAbove = 2f;
     public float offsetBelow = 2f;
 
     public Vector2 margin, smoothing;
 
     public BoxCollider2D levelBounds;
 
     public bool isFollowing { get; set; }
 
     private Vector3 _min, _max;
     private float xDifLeft;
     private float xDifRight;
     private float yDifAbove;
     private float yDifBelow;
 
     GameObject player;
     ProtoMovement movement;
     Rigidbody2D rb;
 
     public void Start()
     {
         player = GameObject.FindGameObjectWithTag("Player");
         movement = player.GetComponent<ProtoMovement>();
         rb = player.GetComponent<Rigidbody2D>();
         _min = levelBounds.bounds.min;
         _max = levelBounds.bounds.max;
         isFollowing = true;
     }
 
     public void Update()
     {
         var x = transform.position.x;
         var y = transform.position.y;
 
         xDifLeft = x - target.position.x;
         xDifRight = target.position.x - x;
 
         yDifBelow = y - target.position.y;
         yDifAbove = target.position.y - y;
 
         var camOffsetValueX = target.position.x + offsetLeft;
 
 
         if(isFollowing)
         {
             if(Mathf.Abs(x - target.position.x) > margin.x)
             {
                 x = Mathf.Lerp(x, camOffsetValueX, smoothing.x * Time.deltaTime);
             }
 
             if(Mathf.Abs(y - target.position.y) > margin.y)
             {
                 y = Mathf.Lerp(y, target.position.y, smoothing.y * Time.deltaTime);
             }
         }
 
         var cameraHalfWidth = Camera.main.orthographicSize * ((float) Screen.width / Screen.height);
 
         x =  Mathf.Clamp(x, _min.x + cameraHalfWidth, _max.x - cameraHalfWidth);
         y =  Mathf.Clamp(y, _min.y + Camera.main.orthographicSize, _max.y - Camera.main.orthographicSize);
 
         transform.position = new Vector3(x, y, transform.position.z);
     }
 
 }
 



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

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.

Follow this Question

Answers Answers and Comments

2 People are following this question.

avatar image avatar image

Related Questions

Smooth Camera 2D 0 Answers

smooth follow 2d camera runner ios 0 Answers

camera follow problem-unity 4.3 2d 1 Answer

2D Camera Smooth follow, FixedUpdate and LateUpdate odd difference, help needed. 1 Answer

Unity smooth following 2D camera not working properly on different resolutions 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