CHaracter Controller Trouble

Predat0R

22-10-2007 19:09:17

Hi guys!
I have a problem related to the character controller. There is a box (dynamic actor) lying between the character and a wall (static actor). I can control character’s motion with keyboard. The problem is when I approach the wall with the character, and the box get stuck between the character and the wall it starts jiggle and finally fall through the wall

fassihi

23-10-2007 10:23:33

I have noticed the same problem, if you go directly towards the wall, it won't go through but at a specific angle, it passes through the wall.
I am going to look into the details and try to find out the reason, haven't done it yet.

Predat0R

23-10-2007 14:33:08

class ControllerHitReport : public NxUserControllerHitReport
{
public:
virtual NxControllerAction onShapeHit(const NxControllerShapeHit& hit) {
return NX_ACTION_NONE;
}
virtual NxControllerAction onControllerHit(const NxControllersHit& hit) {
return NX_ACTION_NONE;
}
} ControllerHitReport;

Why my character add force to dynamic box ?

Predat0R

25-10-2007 20:10:04


I have noticed the same problem, if you go directly towards the wall, it won't go through but at a specific angle, it passes through the wall.
I am going to look into the details and try to find out the reason, haven't done it yet.


You have not understood where a mistake ?