Search found 5 matches

by Petwoip
Thu Jan 31, 2013 4:07 am
Forum: General Bullet Physics Support and Feedback
Topic: Instability with high framerate
Replies: 0
Views: 2819

Instability with high framerate

I'm experiencing some weird instability with bullet when my framerate is high. In the beginning my code looked like this and it worked great for all framerates because it would only do one simulation step every 1/60th of a second. In the event that the framerate was really high, the timeAccumulator ...
by Petwoip
Fri May 04, 2012 6:18 pm
Forum: General Bullet Physics Support and Feedback
Topic: Make btSoftBody more hard/rigid
Replies: 2
Views: 4943

Make btSoftBody more hard/rigid

Hi, I'm trying to dynamically control the hardness/stiffness/rigidness of a btSoftBody. The desired effect: When my soft body falls onto a cube and I click a button to harden, the soft body should become stiff and retain the imprint from the cube (it should not expand back to its original shape). I ...
by Petwoip
Fri Apr 13, 2012 10:01 pm
Forum: General Bullet Physics Support and Feedback
Topic: Denting and plasticity in bullet
Replies: 2
Views: 4369

Re: Denting and plasticity in bullet

Thanks for the reply! I now have some really basic denting happening. My next issue is if I drop something like a cube on a dentable floor, it only detects two or three collisions (but there should be four - one for each corner on the bottom face of the cube). Is there a way to tune the bullet colli...
by Petwoip
Sun Apr 08, 2012 7:20 pm
Forum: General Bullet Physics Support and Feedback
Topic: Denting and plasticity in bullet
Replies: 2
Views: 4369

Denting and plasticity in bullet

Hi, I am trying to simulate denting/plasticity in bullet. Here is a good reference for what I mean by denting: http://vimeo.com/20760525 at the 50-55 second mark. Here are some basic ideas that I have: 1) Treat the object as a soft body during impact and after a couple frames turn it back into a rig...
by Petwoip
Sun Jan 15, 2012 11:06 pm
Forum: General Bullet Physics Support and Feedback
Topic: Set rigidbody mass at any time
Replies: 1
Views: 3531

Set rigidbody mass at any time

Hey, so far I have static and dynamic objects working by passing a mass value into the rigidbody constructor. However, I'm trying to set an object's mass after the rigidbody has been constructed. For example, I have a dynamic object with mass 1 that I want to become static. My goal is to be able to ...