I have an actor cube with rigidbody, box collider. I have another cube as a floor with box collider. both cubes have the same physics material (bounciness 1, dynamic friction 0, static friction 0)
Case 1:
Collision detection on rigidbody of the actor cube is discrete.in this case, actor cube falls inside floor cube and bounces higher than it’s initial position. On each bounce, it jumps higher than the previous top position. Going inside the floor cube makes push effect.
Case 2:
Collision detection on rigidbody of the actor cube is continuous. actor cube falls to the edge of floor cube. it bounces lower than the initial position.
are those behaviors normal?