Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

 2 Answer(s)

  • Put your rotation in Fixed Update as manish said. Or better, in Update function multiply by Time.deltaTime. This is how I imagine your code should look:

    public float speed;
    
    void Update () {
    Vector3 camRot = this.transform.rotation.eulerAngles;
    camRot.y+= speed * Time.deltaTime.
    this.transform.rotation = Quaternion.Euler(camRot);
    }
    

    For smooth things Update is better then FixedUpdate.

  • May be this problem is occurring due to difference in frame rate . If you are testing the build in different device then there may be a case of one device running more frames per second then the other , so to avoid it use void FixedUpdate() function instead of void Update() function .

    Hope this helps .

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: