8 replies to this topic
Sponsor:
#2 GDNet+ - Reputation: 1813
Posted 15 November 2012 - 03:28 AM
btBvhTriangleMeshShape. But I recommend building a set of simple hulls instead (it has been that way for ages and it appears to work faster for me).
#8 Members - Reputation: 127
Posted 22 November 2012 - 03:25 PM
The terrain will not be moving, so it's mass is set to zero and I'm using one single terrain and trying to setup a building over it.
You terrain having 0 mass is a static object. So an object which do not move and allow other dynamic bodies to interact with.
If your building should also not move, then it should probably also be a static object, so a btRigidBody with also 0 mass. But you need to place that building yourself on a position in the world. So of course, depending where you place it, the terrain might intersect with it and this is perfectly fine. Static objects can intersect each other and won't affect the simulation.
Just make sure you do not place dynamic objects at initial position that intersect with static ones.
SO just build the shape of the building with simple shape for starting like the btBoxShape, then set the mass to 0 and create a btRigidBody with it.
Add it to the world at the position you want the building to be in the world and you are set.
Edited by argeze, 22 November 2012 - 03:30 PM.
#9 Members - Reputation: 375
Posted 25 November 2012 - 01:33 PM
@xexuxjy: Should the whole building be one single mesh even if the building is more than one floor (including the ladder)?
If I have 3-4 floors building for example, there will be a marble ladder like in the following photo:

How do I make the characters be able to move over the marble ladder?
If I have 3-4 floors building for example, there will be a marble ladder like in the following photo:

How do I make the characters be able to move over the marble ladder?






