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 Mr-Tomato · Jun 20, 2019 at 05:29 PM · cameraphysicspositioningfixedupdate

Weird MoveTowards behaviour on low fps only.

Hey there, I made a nice animation to transit my camera between my menu and a shop menu using Vector3.MoveTowards. It works smooth and no problems expect if the game runs on low fps( like 15), the camera position will be abit higher from where it should be, and everytime you transit again between shop and menu, the camera will get higher and higher. I tried in code manually setting position of camera after animation(movetowards) is done, it doesn't change anything, and printing values of camera position and desired place position are the same, when they are not?

Picture:

https://prnt.sc/o4hq1j

sorry it doesnt let me upload here, gives some parsing error, the link is just lightshot printscreen.

Code of animation:

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class CameraLogic : MonoBehaviour
 {
     private bool isrotating = false;
     public bool isgoingshop = false;
     private bool isplaying = false;
     private bool triggeroncemenu = true;
     private bool triggeronceshop = true;
     public Transform shopview;
 
     public GameObject menu;
     public GameObject shopmenu;
     public GameObject firstmsg;
 
     private float lerpspeed = 400f;
 
     // Start is called before the first frame update
     void Start()
     {
 
     }
 
     // Update is called once per frame
     void FixedUpdate()
     {
         if(!isplaying)
         {
             if(!isgoingshop)
             {
                 if(triggeroncemenu)
                 {
                     transform.rotation = Quaternion.Slerp(transform.rotation, Quaternion.Euler(20, -90, 0), 2f *  Time.fixedDeltaTime);
                     transform.position = Vector3.MoveTowards(transform.position, new Vector3(0,4.5f,-5), lerpspeed * Time.fixedDeltaTime);
                 }
 
                 if(Vector3.Distance(transform.position, new Vector3(0,4.5f,-5)) < 0.5f)
                 {
                     if(triggeroncemenu)
                     {
                         transform.rotation= Quaternion.Euler(20, 0, 0);
                         firstmsg.SetActive(false);
                         menu.SetActive(true);
                         isrotating=true;
                         triggeroncemenu=false;
                         triggeronceshop = true;
                         transform.position = new Vector3(0,4.5f,-5);
                     }
                 }
             }
             else
             {
                 if(triggeronceshop)
                 {
                     isrotating=false;
                     transform.rotation = Quaternion.Slerp(transform.rotation, Quaternion.Euler(20, 90, 0), 2f *  Time.fixedDeltaTime);
                     transform.position = Vector3.MoveTowards(transform.position, shopview.position, lerpspeed * Time.fixedDeltaTime);
                 }
 
                 if(Vector3.Distance(transform.position, shopview.position) < 0.5f)
                 {
                     if(triggeronceshop)
                     {
                         triggeronceshop=false;
                         triggeroncemenu=true;
                         shopmenu.SetActive(true);
                         transform.rotation= Quaternion.Euler(20, 0, 0);
                         transform.position = shopview.position;
                         print(transform.position);
                         print(shopview.position);
                     }
                 }
             }
         }
 
         if(isrotating)
             transform.Rotate(0,0.2f,0, Space.World);
     }
 
     public void gamemode()
     {
         isplaying=true;
         isrotating=false;
         transform.rotation= Quaternion.Euler(20, 0, 0);
         transform.localPosition= new Vector3(0,80,-100);
     }
 
     public void goshop()
     {
         isgoingshop=true;
     }
 
     public void gomenu()
     {
         isgoingshop=false;
     }
 }


TLDR: on low fps scenario only, 1 object placed on position of other object but sometimes will be a bit higher from where it should be, when their position is equal. works fine on high fps. everything done in fixedupdate.

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

226 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 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 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 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

Particles lag/stutter - choppy movement 3 Answers

Physics + first person camera = jitter? 4 Answers

Does AddForce use Time.deltaTime or TIme.fixedDeltaTime or it depends on whether it is being used in Update() or fixedUpdate()? 2 Answers

Place object in front of me with given Translation Vector 0 Answers

Positioning sprite perfectly in camera view. 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