remove pose frame from SDF,

allow plane collision shape in SDF
load the Roboschool stadium.sdf in humanoid_knee_position_control.py
This commit is contained in:
erwincoumans
2017-06-01 20:13:39 -07:00
parent baa8c3adc2
commit 3987bdd333
8 changed files with 64 additions and 42 deletions

View File

@@ -142,7 +142,11 @@ public:
btMultiBodyLinkCollider* getLinkCollider(int index)
{
return m_colliders[index];
if (index >= 0 && index < m_colliders.size())
{
return m_colliders[index];
}
return 0;
}
//