Reporting a bug?

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:

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?

betajaen

23-03-2008 22:35:09

Added your change to bleeding, but haven't tested it.