Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. We’re making changes to the Unity Runtime Fee pricing policy that we announced on September 12th. Access our latest thread for more information!
    Dismiss Notice
  3. Dismiss Notice

having a bounciness greater than 1?

Discussion in 'Physics' started by julienrobert, Nov 26, 2014.

  1. julienrobert

    julienrobert

    Joined:
    Sep 15, 2014
    Posts:
    65
    Is it possible to get an unnatural elastic bounce? = bounciness greater than 1?
    The object collided gives energy to the other object and this latest goes faster in the opposite direction?..
     
  2. AlkisFortuneFish

    AlkisFortuneFish

    Joined:
    Apr 26, 2013
    Posts:
    945
    It is in Physics2D, as of 4.5.5p4. I don't think it's possible in the 3D physics engine, but you can implement it via OnCollisionExit scripting.
     
  3. RJ-MacReady

    RJ-MacReady

    Joined:
    Jun 14, 2013
    Posts:
    1,718
    I did this by making an object scale up to 1.1 of its size for a single fixed update when hit. Acted like a pinball bumper.