sdl
23-03-2008 22:24:40
I made a sample with revolute joints a found that the revolute low restitution value was apparently not working. In fact, in NxOgreJointSet1.cpp:
when it should be:
now it's working correctly.
can anybody confirm this please?
void RevoluteJoint::__createJoint(const Ogre::Vector3 &axis, const Ogre::Vector3 &anchor, JointParams& jp) {
.......
mDescription.limit.low.value = jp.mLowerLimitRestitution;
when it should be:
mDescription.limit.low.restitution = jp.mLowerLimitRestitution;
now it's working correctly.
can anybody confirm this please?