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 NickDeGrood · Apr 15, 2018 at 03:04 AM · 2dcrashphysics2d

Crashing issue related to changing velocity

What I'm trying to do is get an object's velocity to change with a smooth transition. The code is supposed to decrease the y-velocity by 0.1 each frame, until it reaches -2.5. However, whenever the code is executed, Unity freezes and becomes unresponsive. Does anyone know what the issue is?

 void MoveDown() {
         while (rb.velocity.y > -2.5) {
             Vector2 newV;
             newV.x = 0f;
             newV.y = -.1f;
             rb.velocity += newV;
         }
     }

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

2 Replies

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by MarioSantoso · Apr 15, 2018 at 04:06 AM

It is better to take out the while loop and do either of these to get what you want

  1. Just add/increase drag in the rigidbody property. Your object will slow down automatically.


  2. If for whatever reason you need to slowdown one of the axis only, do this

       private void FixedUpdate()
         {
             _rb.velocity += new Vector3(-0.5f * Time.deltaTime, 0, 0);
         }
     
     // _rb is reference to the rigidbody
     // add this code to the script attached to the object you want to slow down
     // modify as you see fit
    
Comment
Add comment · 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
0

Answer by toddisarockstar · Apr 15, 2018 at 03:48 AM

while loops always freeze unity if the condition in the () brackets are never met. (while loops can cause endless loops )

possibly your velocity cant change. maybe its gameobject is against a collider or whatever.

if you wanted to write your code with the loop as you have it you could write it like this so the while loop is not dependent on the game engines condition.

  void MoveDown() {
 float y = rb.velocity.y ;
          while (y > -2.5) {   y=y-.1f;    }
     rb.velocity = new Vector3(rb.x,y,rb.z);
      }

but really, i cant see what the loop is for. if you wanted to simply limit the y velocity why wouldn't you get the same effect saying:

 if(rb.velocity>2.5f){rb.velocity = new Vector3(rb.velocity.x,2.5f,rb.velocity.z);}


Comment
Add comment · Show 1 · 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 MarioSantoso · Apr 15, 2018 at 04:10 AM 0
Share

Have you tested these code?

 float y = rb.velocity.y ;
           while (y > -2.5) {   y=y-.1f;    }
      rb.velocity = new Vector3(rb.x,y,rb.z);
 
 // You will not get gradual slowdown with this



 if(rb.velocity>2.5f)
 
 // Will throw error because velocity is a Vector3

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

165 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

Related Questions

Object following a path and colliding with other objects with physics. 1 Answer

Problems with enemy ai 0 Answers

How to make an object ricochet in 2d 2 Answers

Precise Collision Detection with Rigidbody2D.Cast 1 Answer

Physics2D Raycast not detecting wall colliders 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