I get some weird effects now depending on the meshes I use...
On one character, it walk now backward, and at idle pause, suddenly, we see it "turning" around show the idle (correctly) for the pause then "turn around again" to walk backward.
On another character, the walk is ok, but some part of the bone animations flip over in the attack stances.
Look like some bone rotations/transformation give odd behavior. Anybody seen that with Irrlicht 1.8.0. I saw somewhere that they were changes in the matrices transformations, could it be the cause?
Here is what I'm using to "align" to another character:
Code: Select all
void DynamicObject::lookAt(vector3df pos)
{
vector3df offsetVector = pos - node->getPosition();
vector3df rot = (-offsetVector).getHorizontalAngle();
rot.X=0;
rot.Z=0;
// Will rotate the node only if it still "alive"
if (properties.life>0)
node->setRotation(rot);
}