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 charliepup03 · May 23, 2020 at 07:14 PM · collisiontriggerscript.velocity

reset rb.velocity = direction * speed; after collision

i'm trying to figure out how to reset rb.velocity = direction * speed with this script: as it stands my ball keeps getting faster and faster until the game resets

{

 public AudioSource score;

 public IEnumerator OnTriggerEnter2D (Collider2D Other)
 {
     if(Other.gameObject.tag == "Goal")
     {
         score.Play();
         yield return new WaitForSeconds(1f);
         transform.position = new Vector2 (0, 0);
         
     }
 }

}

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
1

Answer by SteenPetersen · May 23, 2020 at 11:39 PM

 rb.velocity = vector3.zero


is that what you mean? I'm unclear on what you are asking for

you may also mean that you should have some sort of limit to what speed you can have?

 [SerializeField] float maxSpeed = 1;
 
 if(rb.velocity > maxSpeed )
   rb.velocity = maxSpeed ;
Comment
Add comment · Show 2 · 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 charliepup03 · May 25, 2020 at 08:20 PM 0
Share

in my game of pong my ball uses rb.velocity = direction * speed in my ball script to speed up the ball everytime the ball hits a paddle:

{ public Ball movement; public float speed; Vector2 direction; // (X,Y) public AudioSource paddleBleep; public AudioSource wallBleep;

 Rigidbody2D rb;

 // Start is called before the first frame update
 void Start()
 {
     rb = GetComponent<Rigidbody2D>();
     direction = Vector2.one.normalized;//(1,1)
 }

 public void FixedUpdate() // speed ball after each bounce
 {
     rb.velocity = direction * speed;
 }

 private void OnCollisionEnter2D(Collision2D collision) // wall collision code
 {
     if (collision.gameObject.CompareTag("Wall"))
     {
         direction.y = -direction.y;
         wallBleep.Play();
     }
     else if (collision.gameObject.CompareTag("Paddle"))
     {
         speed += Random.Range(0.5f, 1.5f);
         direction.x = -direction.x;
         paddleBleep.Play();
     }
 }



   

}

avatar image charliepup03 charliepup03 · May 25, 2020 at 08:24 PM 0
Share

the problem is after the ball hits the goal and resets it's position the speed of the ball doesn't with it and the ball infinitely faster, so i'm trying to find a way to reset the ball speed by adding it into my ball collision script:

{

 public AudioSource score;

   

 public IEnumerator OnTriggerEnter2D (Collider2D Other)
 {
     if(Other.gameObject.tag == "Goal")
     {
         score.Play();
         yield return new WaitForSeconds(1f);
         transform.position = new Vector2 (0, 0);
       
     }
 }



}

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

235 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Troublesome collision detection when changing rigidbody.velocity directly 0 Answers

How to detect collision position and velocity? 2 Answers

Rigidbody2D.velocity out of controll 3 Answers

OnTriggerEnter2D acting like OnTriggerStay2D 0 Answers

Why does this script check for raycast collision? Is it necessary? 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